added GPL header to all files and added INSTALL AUTHORS COPYING files.
[NeonServV5.git] / src / tools.c
index 43f27cd35ac052148a7c39247aaeea4dbf78a0b2..a961d62ab2e4f2c44ef1b7ed3078299fd7ca0446 100644 (file)
@@ -1,3 +1,19 @@
+/* tools.c - NeonServ v5.0
+ * Copyright (C) 2011  Philipp Kreil (pk910)
+ * 
+ * This program 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, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * 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/>. 
+ */
 #include "tools.h"
 #include "UserNode.h"
 #include "ChanNode.h"
@@ -106,9 +122,9 @@ struct Table *table_init(int width, int length, int flags) {
     table->length = length;
     table->width = width;
     table->flags = flags;
-    table->col_flags = calloc(length, sizeof(int));
+    table->col_flags = calloc(width, sizeof(int));
     table->entrys = 0;
-    table->maxwidth = calloc(length, sizeof(int));
+    table->maxwidth = calloc(width, sizeof(int));
     table->table_lines = NULL;
     return table;
 }
@@ -179,16 +195,11 @@ char **table_end(struct Table *table) {
             if(!(table->col_flags[col] & TABLE_FLAG_COL_CONTENTS)) continue;
             if(table->col_flags[col] & TABLE_FLAG_COL_BOLD)
                 table->table_lines[row][pos++] = '\002';
+            i = 0;
             if(table->contents[row][col]) {
-                for(i = 0; i < strlen(table->contents[row][col]); i++) {
+                for(; i < strlen(table->contents[row][col]); i++) {
                     table->table_lines[row][pos++] = table->contents[row][col][i];
                 }
-            } else {
-                i = 4;
-                table->table_lines[row][pos++] = 'N';
-                table->table_lines[row][pos++] = 'U';
-                table->table_lines[row][pos++] = 'L';
-                table->table_lines[row][pos++] = 'L';
             }
             if(col < table->width-1) {
                 for(;i < table->maxwidth[col]; i++) {