--- l2.h.in 2002/07/30 19:08:24 1.30
+++ l2.h.in 2003/01/06 11:41:51 1.31
@@ -1,9 +1,10 @@
/*
-** OSSP l2 - Logging Library
-** Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
-** Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
+** OSSP l2 - Flexible Logging
+** Copyright (c) 2001-2003 Cable & Wireless Deutschland GmbH
+** Copyright (c) 2001-2003 The OSSP Project (http://www.ossp.org/)
+** Copyright (c) 2001-2003 Ralf S. Engelschall <rse@engelschall.com>
**
-** This file is part of OSSP L2, a flexible logging library which
+** This file is part of OSSP l2, a flexible logging library which
** can be found at http://www.ossp.org/pkg/lib/l2/.
**
** Permission to use, copy, modify, and distribute this software for
@@ -53,7 +54,7 @@
#include <stdarg.h>
#include <string.h>
-/* counterbalance poor standard environments */
+/* counterbalance poor standard environments */
#ifndef NULL
#define NULL (void *)0
#endif
@@ -88,7 +89,7 @@
L2_LEVEL_ERROR = (1 << 2),
L2_LEVEL_WARNING = (1 << 3),
L2_LEVEL_NOTICE = (1 << 4),
- L2_LEVEL_INFO = (1 << 5),
+ L2_LEVEL_INFO = (1 << 5),
L2_LEVEL_TRACE = (1 << 6),
L2_LEVEL_DEBUG = (1 << 7)
} l2_level_t;
@@ -99,7 +100,7 @@
/* macro describing all levels */
#define L2_LEVEL_ALL ((1 << (8+9+1))-1)
-/* macro describing all levels from highest (PANIC)
+/* macro describing all levels from highest (PANIC)
to and including a particular low level */
#define L2_LEVEL_UPTO(level) (((level)-1)|(level))
|