💾 Archived View for gemini.rmf-dev.com › repo › Vaati › gmi_proxy › files › a85fc3eab13a67a24ad259c2… captured on 2023-11-04 at 12:34:41. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-09-08)

-=-=-=-=-=-=-

Go Back

0 /* See LICENSE file for copyright and license details. */

1 #ifndef _LOG_H_

2 #define _LOG_H_

3

4 void log_info(const char *format, ...);

5 void log_warning(const char *format, ...);

6 void log_error(const char *format, ...);

7 void log_debug(const char *format, ...);

8

9 void log_info_r(struct client* c, const char *format, ...);

10 void log_warning_r(struct client* c, const char *format, ...);

11 void log_error_r(struct client* c, const char *format, ...);

12 void log_debug_r(struct client* c, const char *format, ...);

13

14 #endif

15