- Remove shared/str.h where not used. - Remove shared/debug.h from all files as it has been completely replaced by shared/report.h (it will be removed later). - Add more doxygen comments to shared/* and clients/lcdproc/*. - Include static functions in doxygen output.
11 lines
181 B
C
11 lines
181 B
C
/** \file shared/str.h
|
|
* Commmand / argument parsing functions (for use in clients).
|
|
*/
|
|
|
|
#ifndef STR_H
|
|
#define STR_H
|
|
|
|
int get_args (char **argv, char *str, int max_args);
|
|
|
|
#endif
|