cppcheck/tokenize.h

46 lines
1.0 KiB
C
Raw Normal View History

2007-05-24 07:40:45 +02:00
//---------------------------------------------------------------------------
#ifndef tokenizeH
#define tokenizeH
//---------------------------------------------------------------------------
#include <string>
#include <vector>
extern std::vector<std::string> Files;
struct TOKEN
{
unsigned int FileIndex;
char *str;
unsigned int linenr;
struct TOKEN *next;
};
extern struct TOKEN *tokens, *tokens_back;
void Tokenize(const char FileName[]);
2008-02-16 16:46:32 +01:00
void TokenizeCode(std::istream &code, const unsigned int FileIndex=0);
// Return size.
int SizeOfType(const char type[]);
2007-05-29 08:24:36 +02:00
// Simplify tokenlist
// -----------------------------
void SimplifyTokenList();
2007-05-29 19:11:53 +02:00
// Deallocate lists..
void DeallocateTokens();
// Helper functions for handling the tokens list..
2008-03-22 12:46:06 +01:00
const TOKEN *findtoken(const TOKEN *tok1, const char *tokenstr[]);
const TOKEN *gettok(const TOKEN *tok, int index);
const char *getstr(const TOKEN *tok, int index);
2007-05-24 07:40:45 +02:00
//---------------------------------------------------------------------------
#endif