]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - win/colours.h
Move STATS handler back to cmd_stats so it's hotpatchable again
[user/henk/code/inspircd.git] / win / colours.h
index e90782bc93c72f88b4ceeb915d3cf312e280704b..fef04903669ac580f485bddb6a3b4d3812fef9b7 100644 (file)
@@ -1,18 +1,25 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __COLOURS_H
-#define __COLOURS_H
+
+#ifndef COLORS_H
+#define COLORS_H
 
 #define TRED FOREGROUND_RED | FOREGROUND_INTENSITY
 #define TGREEN FOREGROUND_GREEN | FOREGROUND_INTENSITY
@@ -41,14 +48,14 @@ int printf_c(const char * format, ...)
        int t;
        int c = 0;
        const char * p = message;
-       while ( (*p) && (*p != 0) )
+       while (*p != 0)
        {
                if (*p == '\033')
                {
                        // Escape sequence -> copy into the temp buffer, and parse the color.
                        p++;
                        t = 0;
-                       while(*p != 'm')
+                       while ((*p) && (*p != 'm'))
                        {
                                temp[t++] = *p;
                                ++p;