CCCC - C and C++ Code Counter
9999-git
CCCC Development version (post-3.1.4)
|
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <string>
#include <iostream>
#include <sstream>
#include <fstream>
#include "cccc_tok.h"
#include "AParser.h"
Go to the source code of this file.
Macros | |
#define | DbgMsg(DF, OS, X) if(DebugMask&DF) { OS << X ; } |
#define | SKIP_IDENTIFIERS_ARRAY_SIZE 256 |
#define | MAKE_STRSTREAM(X) stringstream X; |
#define | CONVERT_STRSTREAM(X) (X) |
#define | RELEASE_STRSTREAM(X) |
#define | zzTRACE_RULES |
Enumerations | |
enum | DebugFlags { LEXER =0x01, PARSER =0x02, COUNTER =0x04, MEMORY =0x08, EXTENT =0x10, DATABASE =0x20 } |
Variables | |
int | DebugMask |
CCCC_Project * | prj |
char * | skip_identifiers [SKIP_IDENTIFIERS_ARRAY_SIZE] |
enum DebugFlags |
int DebugMask |
Definition at line 50 of file ccccmain.cc.
CCCC_Project* prj |
Definition at line 49 of file ccccmain.cc.
char* skip_identifiers[SKIP_IDENTIFIERS_ARRAY_SIZE] |
Definition at line 53 of file ccccmain.cc.