diff asxparser.h @ 25607:9d0b189ce1b2

Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved for the system, names starting with _ are reserved at file level.
author diego
date Sun, 06 Jan 2008 23:20:15 +0000
parents 6ac1ece1f9fe
children 4129c8cfa742
line wrap: on
line diff
--- a/asxparser.h	Sun Jan 06 22:03:59 2008 +0000
+++ b/asxparser.h	Sun Jan 06 23:20:15 2008 +0000
@@ -1,14 +1,14 @@
 #ifndef ASXPARSER_H
 #define ASXPARSER_H
 
-typedef struct _ASX_Parser_t ASX_Parser_t;
+typedef struct ASX_Parser_t ASX_Parser_t;
 
 typedef struct {
   char* buffer;
   int line;
 } ASX_LineSave_t;
 
-struct _ASX_Parser_t {
+struct ASX_Parser_t {
   int line; // Curent line
   ASX_LineSave_t *ret_stack;
   int ret_stack_size;