#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include "main.h"
#include "gettext.h"
#include "error.h"
Functions | |
void | fatal (const char *fmt,...) |
Convenience function for reporting fatal errors. Will call exit() after sending/displaying error message. | |
void | error (const char *fmt,...) |
Convenience function for reporting errors that will soon result in a fatal error and always need user's attention. | |
void | notify (const char *fmt,...) |
Convenience function for reporting informative messages and warnings. Deprecated. Use info() instead. | |
void | info (const char *fmt,...) |
Convenience function for reporting informative messages and warnings. | |
void | debug (const char *fmt,...) |
Convenience function for reporting debug messages. |
void debug | ( | const char * | fmt, | |
... | ||||
) |
Convenience function for reporting debug messages.
fmt | Format string. |
void error | ( | const char * | fmt, | |
... | ||||
) |
Convenience function for reporting errors that will soon result in a fatal error and always need user's attention.
fmt | Format string. |
void fatal | ( | const char * | fmt, | |
... | ||||
) |
Convenience function for reporting fatal errors. Will call exit() after sending/displaying error message.
fmt | Format string. |
void info | ( | const char * | fmt, | |
... | ||||
) |
Convenience function for reporting informative messages and warnings.
fmt | Format string. |
void notify | ( | const char * | fmt, | |
... | ||||
) |
Convenience function for reporting informative messages and warnings. Deprecated. Use info() instead.
fmt | Format string. |