#include <stdio.h>
Go to the source code of this file.
Defines | |
#define | FF_VERSION "0.1.3" |
current version of FF | |
#define | WARNINGS 1 |
ON / OFF. | |
#define | ERRORS 1 |
ON / OFF. | |
#define | FF_PRINTWARNING(message) do{ if(WARNINGS) fprintf(stderr, "<libfinflect " FF_VERSION "> WARNING@file: '" __FILE__ "':%d[" message"]\n", __LINE__); } while(0) |
print a warning | |
#define | FF_PRINTERROR(message) do{ if(ERRORS) fprintf(stderr, "<libfinflect " FF_VERSION "> ERROR@file: '" __FILE__ "':%d[" message"]\n", __LINE__); } while(0) |
print an error |
Definition in file ffconfig.h.
|
ON / OFF. Turn error messages ON and OFF Definition at line 58 of file ffconfig.h. |
|
print an error Print an error message. Note that this macro adds the trailing newline (\n) message character array to be printed. Definition at line 78 of file ffconfig.h. Referenced by ffstring_append(), ffstring_create(), ffstring_decinst(), ffstring_dfe(), ffstring_rfe(), and ffstring_tail(). |
|
print a warning Print a warning message. Note that this macro adds the trailing newline (\n) message character array to be printed. Definition at line 68 of file ffconfig.h. |
|
current version of FF
Current version of FinFlect. Definition at line 44 of file ffconfig.h. Referenced by print_version(). |
|
ON / OFF. Turn warning messages ON and OFF Definition at line 51 of file ffconfig.h. |