* src/main.c (main): Standardize.

* src/output.c (output_table_data, output_parser): Likewise.
* src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
This commit is contained in:
Pascal Bart
2001-08-31 16:56:44 +00:00
parent 63c2d5de0f
commit e8cb70b957
6 changed files with 53 additions and 47 deletions

View File

@@ -25,12 +25,12 @@
typedef struct macro_entry_s
{
const char* key;
const char* value;
const char *key;
const char *value;
} macro_entry_t;
void macro_init PARAMS ((void));
void macro_insert PARAMS ((const char *key, const char *value));
const char* macro_find PARAMS ((const char *key));
const char *macro_find PARAMS ((const char *key));
#endif /* not MACROTAB_H_ */