]> git.mxchange.org Git - flightgear.git/blob - Scenery/common.h
d3e01d68fc759370ae9720698c1228b5c233d6be
[flightgear.git] / Scenery / common.h
1 /**************************************************************************
2  * common.h -- common utilities and support routines for the parser
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * $Id$
7  * (Log is kept at end of this file)
8  **************************************************************************/
9
10
11 #ifndef COMMON_H
12 #define COMMON_H
13
14
15 /* Maximum length for an identifier */
16 #define MAX_IDENT_LEN 33  /* 32 + 1 for string terminator */
17
18 /* strip the enclosing quotes from a string, works within the current
19    string and thus is destructive. */
20 char *strip_quotes(char *s);
21
22
23 #endif COMMON_H
24
25
26 /* $Log$
27 /* Revision 1.1  1997/05/16 16:07:04  curt
28 /* Initial revision.
29 /*
30  */