|
@@ -11,6 +11,8 @@ d_char *xs_time(char *fmt, int local);
|
|
|
#define xs_local_time(fmt) xs_time(fmt, 1)
|
|
#define xs_local_time(fmt) xs_time(fmt, 1)
|
|
|
#define xs_utc_time(fmt) xs_time(fmt, 0)
|
|
#define xs_utc_time(fmt) xs_time(fmt, 0)
|
|
|
|
|
|
|
|
-void srv_log(d_char *str);
|
|
|
|
|
|
|
+void srv_debug(int level, d_char *str);
|
|
|
|
|
+#define srv_log(str) srv_debug(0, str)
|
|
|
|
|
+
|
|
|
int srv_open(char *basedir);
|
|
int srv_open(char *basedir);
|
|
|
|
|
|