Update copyright year.
[umurmur.git] / src / log.h
index 66a294907de80c6e79ca28a4ff9ceb13b96ca17f..5047c544b72ad6bf7def3b57fcda7eab61f69f66 100644 (file)
--- a/src/log.h
+++ b/src/log.h
@@ -1,5 +1,5 @@
-/* Copyright (C) 2009, Martin Johansson <martin@fatbob.nu>
-   Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
+/* Copyright (C) 2009-2013, Martin Johansson <martin@fatbob.nu>
+   Copyright (C) 2005-2013, Thorvald Natvig <thorvald@natvig.com>
 
    All rights reserved.
 
@@ -32,6 +32,7 @@
 #define LOG_H_2435642356
 
 #include "types.h"
+#include "client.h"
 
 #define doAssert(_cond_) do {                                  \
                if (!(_cond_)) {                                                                                                \
@@ -51,9 +52,11 @@ void Log_debug(const char *logstring, ...);
 
 void Log_warn(const char *logstring, ...);
 void Log_info(const char *logstring, ...);
+void Log_info_client(client_t *client, const char *logstring, ...);
 void Log_fatal(const char *logstring, ...);
 
 void Log_init(bool_t terminal);
+void Log_reset();
 void Log_free();
 
 #endif