Euphoria
cp437.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string_view>
4 
5 // Code page 437 is the character set of the original IBM PC (personal computer)
6 
7 namespace eu
8 {
9  struct Random;
10 }
11 
12 namespace eu::core
13 {
14  std::string_view
15  get_cp437(int c);
16 
17  std::string_view
18  get_random_cp437_in_utf8(Random* random);
19 }
std::string_view get_random_cp437_in_utf8(Random *random)
Definition: cp437.cc:43
std::string_view get_cp437(int c)
Definition: cp437.cc:36
Definition: assert.h:90