about summary refs log tree commit diff stats
path: root/source/encoding.c
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-07-11 21:09:56 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-07-11 21:09:56 -0400
commit2c837223756de2596931c22c8f4fa2ba4a4237a9 (patch)
tree07f5ba36aa0f5883cd10fbe2cc8bbc11969f7473 /source/encoding.c
parentf31274f14656be2498b05027f668d9a55fb26f6b (diff)
downloadgen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.tar.gz
gen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.tar.bz2
gen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.zip
Fixed indentation
Diffstat (limited to 'source/encoding.c')
-rw-r--r--source/encoding.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/encoding.c b/source/encoding.c index 7b70df2..0be1e0b 100644 --- a/source/encoding.c +++ b/source/encoding.c
@@ -10,14 +10,14 @@
10#include "encoding.h" 10#include "encoding.h"
11 11
12const char charmap[] = { 12const char charmap[] = {
13 ' ', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!', '?', '.', '-', ' ', 13 ' ', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!', '?', '.', '-', ' ',
14 ' ', '\"', '\"', '\'', '\'', '*', '*', ' ', ',', ' ', '/', 'A', 'B', 'C', 'D', 'E', 14 ' ', '\"', '\"', '\'', '\'', '*', '*', ' ', ',', ' ', '/', 'A', 'B', 'C', 'D', 'E',
15 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 15 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
16 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 16 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
17 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ' ' 17 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ' '
18}; 18};
19 19
20char debugGen3Decode(u8 val) 20char debugGen3Decode(u8 val)
21{ 21{
22 return charmap[val - 0xA0]; 22 return charmap[val - 0xA0];
23} 23}