|
fswatch 1.21.0
|
Header of the libfswatch library containing logging functions..
More...
#include <stdio.h>Go to the source code of this file.
Functions | |
| void | fsw_log (const char *msg) |
| void | fsw_flog (FILE *f, const char *msg) |
| void | fsw_logf (const char *format,...) |
| void | fsw_flogf (FILE *f, const char *format,...) |
| void | fsw_log_perror (const char *msg) |
| void | fsw_logf_perror (const char *format,...) |
Header of the libfswatch library containing logging functions..
| void fsw_flog | ( | FILE * | f, |
| const char * | msg | ||
| ) |
Prints the specified message to the specified file.
| void fsw_flogf | ( | FILE * | f, |
| const char * | format, | ||
| ... | |||
| ) |
Formats the specified message and prints it to the specified file. The message string format conforms with printf.
| void fsw_log | ( | const char * | msg | ) |
Prints the specified message to standard output.
| void fsw_log_perror | ( | const char * | msg | ) |
Prints the specified message using perror.
| void fsw_logf | ( | const char * | format, |
| ... | |||
| ) |
Formats the specified message and prints it to standard output. The message string format conforms with printf.
| void fsw_logf_perror | ( | const char * | format, |
| ... | |||
| ) |
Prints the specified message using perror. The message string format conforms with printf.