mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-10 07:20:36 +00:00
- 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.
20 lines
434 B
C++
20 lines
434 B
C++
#ifndef _RE2C_CODEGEN_PRINT_
|
|
#define _RE2C_CODEGEN_PRINT_
|
|
|
|
#include "src/util/c99_stdint.h"
|
|
#include <iosfwd>
|
|
|
|
namespace re2c
|
|
{
|
|
|
|
bool is_print (uint32_t c);
|
|
bool is_space (uint32_t c);
|
|
char hexCh(uint32_t c);
|
|
void prtCh(std::ostream&, uint32_t);
|
|
void prtHex(std::ostream&, uint32_t);
|
|
void prtChOrHex(std::ostream&, uint32_t);
|
|
void printSpan(std::ostream&, uint32_t, uint32_t);
|
|
|
|
} // end namespace re2c
|
|
|
|
#endif // _RE2C_CODEGEN_PRINT_
|