MalachScript/src/Parser/Lexer/NumericalLexers.hpp

12 lines
280 B
C++

#ifndef MALACHSCRIPT_NUMERICALLEXERS_HPP
#define MALACHSCRIPT_NUMERICALLEXERS_HPP
#include <cstdint>
uint8_t LexDecimalValue(char c);
uint8_t LexHexadecimalValue(char c);
uint8_t LexOctalValue(char c);
uint8_t LexBinaryValue(char c);
#endif // MALACHSCRIPT_NUMERICALLEXERS_HPP