+ "debug.h": Defines whether debugging printf() calls should be enabled. + "dirwalk.c/h": Callback functions for recursive directory traversal. + "fonts.c/h": Font loading/grouping/discarding variables and functions. + "get_fname.c/h": Functions for constructing preferred file paths.
14 lines
139 B
C
14 lines
139 B
C
/*
|
|
get_fname.h
|
|
*/
|
|
|
|
#ifndef GET_FNAME_H
|
|
#define GET_FNAME_H
|
|
|
|
extern char * savedir;
|
|
|
|
char * get_fname(const char * const name);
|
|
|
|
|
|
#endif
|
|
|