Changeset 2066 in orxonox.OLD for orxonox/branches/chris/src/ini_parser.h
- Timestamp:
- Jul 3, 2004, 5:36:35 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/chris/src/ini_parser.h
r2065 r2066 9 9 #define INI_PARSER_H 10 10 11 #include "stdincl.h" 11 #include <stdio.h> 12 #include <strings.h> 13 #include <stdlib.h> 12 14 13 15 #define PARSELINELENGHT 512 … … 23 25 ~IniParser (); 24 26 25 char* get Var( char* name, char* section, char* defvalue);26 int open File( char* name);27 int get Section( char* section);28 int next Var( char* name, char* value);27 char* get_var( char* name, char* section, char* defvalue); 28 int open_file( char* name); 29 int get_section( char* section); 30 int next_var( char* name, char* value); 29 31 }; 30 32
Note: See TracChangeset
for help on using the changeset viewer.