HyperDbg/hyperdbg/script-engine/scanner.h
2020-12-01 22:26:46 +03:30

24 lines
435 B
C

#pragma once
#ifndef SCANNER_H
#define SCANNER_H
#include "common.h"
/**
* @brief number of read characters from input
*/
unsigned int InputIdx;
////////////////////////////////////////////////////
// Interfacing functions //
////////////////////////////////////////////////////
TOKEN GetToken(char* c, char* str);
TOKEN Scan(char* str, char* c);
char sgetc(char* str);
char IsKeyword(char* str);
#endif // !SCANNER_H