diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-11 12:10:07 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-11 12:27:47 +0100 |
commit | 7852af7c93140a5d78cf35414d4ae5b42bca187a (patch) | |
tree | 48e6413cb5f83fca6618bd51c4499bd41cb552a0 /src/kern.h | |
parent | whitespace (diff) | |
download | scrotty-7852af7c93140a5d78cf35414d4ae5b42bca187a.tar.gz scrotty-7852af7c93140a5d78cf35414d4ae5b42bca187a.tar.bz2 scrotty-7852af7c93140a5d78cf35414d4ae5b42bca187a.tar.xz |
m + split out save_fbs to main + do not use PATH_MAX + do not use alloca
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r-- | src/kern.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -35,11 +35,12 @@ void print_not_found_help (void); /** * Construct the path to a framebuffer device. * - * @param pathbuf Ouput buffer for the path. - * @param altpath The index of the alternative path-pattern to use. - * @param fbno The index of the framebuffer. + * @param altpath The index of the alternative path-pattern to use. + * @param fbno The index of the framebuffer. + * @return The path to the framebuffer device. Errors are impossible. + * This string is statically allocated and must not be deallocated. */ -void get_fbpath (char *restrict pathbuf, int altpath, int fbno); +char *get_fbpath (int altpath, int fbno); /** * Get the dimensions of a framebuffer. |