Files

11 lines
240 B
C

#ifndef KEYWORDS_H
#define KEYWORDS_H
typedef enum {
FUNCTION, NAMESPACE, ASCIIZ, ASCII, WORD, SHORT, BYTE
} Keywords;
int IsKeyword(const char* text, Keywords* keyword);
void GetKeywordText(Keywords keyword, char buffer[16]);
#endif