]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/lists.cpp
gcc: appease the hardening warnings
[xonotic/netradiant.git] / contrib / bobtoolz / lists.cpp
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include "lists.h"
21 #include "globaldefs.h"
22
23 #if GDEF_COMPILER_MSVC
24 #pragma warning(disable : 4786)
25 #endif
26
27 #include "misc.h"
28
29 bool LoadExclusionList(char *filename, std::list<Str> *exclusionList)
30 {
31     FILE *eFile = fopen(filename, "r");
32     if (eFile) {
33         char buffer[256];
34         int cnt = 0;
35         while (!feof(eFile)) {
36             memset(buffer, 0, 256);
37             if (fscanf(eFile, "%s\n", buffer)) {
38                 exclusionList->push_back(buffer);
39             } else {
40                 cnt++;
41             }
42         }
43
44         fclose(eFile);
45
46         return TRUE;
47     }
48
49     globalErrorStream() << "Failed To Load Exclusion List: " << filename << "\n";
50     return FALSE;
51 }
52
53 bool LoadGList(char *filename, ui::ListStore loadlist)
54 {
55     FILE *eFile = fopen(filename, "r");
56     if (eFile) {
57         char buffer[256];
58         int cnt = 0;
59         while (!feof(eFile)) {
60             memset(buffer, 0, 256);
61             if (fscanf(eFile, "%s\n", buffer)) {
62                 char *buffer2 = new char[strlen(buffer) + 1];
63                 strcpy(buffer2, buffer);
64                 loadlist.append(0, buffer2);
65             } else {
66                 cnt++;
67             }
68         }
69
70         fclose(eFile);
71
72         return TRUE;
73     }
74
75     globalErrorStream() << "Failed To Load GList: " << filename << "\n";
76     return FALSE;
77 }