1 | <?php |
||
17 | class CharReader extends AbstractIntegerReader |
||
18 | { |
||
19 | /** |
||
20 | * Read unsigned char (8-bit integer) data from the stream |
||
21 | * |
||
22 | * @return int |
||
23 | */ |
||
24 | protected function readUnsigned() |
||
28 | |||
29 | /** |
||
30 | * Read signed char (8-bit integer) data from the stream |
||
31 | * |
||
32 | * @return int |
||
33 | */ |
||
34 | protected function readSigned() |
||
43 | } |
||
44 |