mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-18 21:31:37 +00:00
8c95516224
- updaterevision for automated revision string generation - re2c as a prerequisite to use sc_man in the future - zipdir to automatically generate an engine resource file.
13 lines
281 B
C++
13 lines
281 B
C++
#ifndef _RE2C_PARSE_UNESCAPE_
|
|
#define _RE2C_PARSE_UNESCAPE_
|
|
|
|
#include "src/util/c99_stdint.h"
|
|
|
|
namespace re2c {
|
|
|
|
uint32_t unesc_hex (const char * s, const char * s_end);
|
|
uint32_t unesc_oct (const char * s, const char * s_end);
|
|
|
|
} // namespace re2c
|
|
|
|
#endif // _RE2C_PARSE_UNESCAPE_
|