Implements members of the EtagsDB class. These members interact with files generated by the etags program. More...
#include <portable_io.h>
#include <string.h>
#include <stdlib.h>
#include <cxxtls/etagsdb.h>
Go to the source code of this file.
Namespaces | |
namespace | cxxtls |
The namespace that encapsulates most of the functionality in the CXX toolkit. | |
Defines | |
#define | issym(c) |
#define | stricmp strcasecmp |
Typedefs | |
typedef int(* | compare_func_t )(char const *l, char const *r) |
Implements members of the EtagsDB class. These members interact with files generated by the etags program.
Definition in file etagsdb.cxx.
#define issym | ( | c | ) |
( (c >= 'a' && c <= 'z') || \ (c >= 'A' && c <= 'Z') || \ (c >= '0' && c <= '9') || \ c == ':' || \ c == '_' || \ c == '~' \ )
Definition at line 87 of file etagsdb.cxx.
#define stricmp strcasecmp |
Definition at line 20 of file etagsdb.cxx.
typedef int(* compare_func_t)(char const *l, char const *r) |
Definition at line 25 of file etagsdb.cxx.