mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-22 06:54:42 +00:00
24 lines
435 B
C
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
|
|
|
|
|