diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-11 21:09:56 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-11 21:09:56 -0400 |
commit | 2c837223756de2596931c22c8f4fa2ba4a4237a9 (patch) | |
tree | 07f5ba36aa0f5883cd10fbe2cc8bbc11969f7473 /source/encoding.c | |
parent | f31274f14656be2498b05027f668d9a55fb26f6b (diff) | |
download | gen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.tar.gz gen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.tar.bz2 gen3uploader-2c837223756de2596931c22c8f4fa2ba4a4237a9.zip |
Fixed indentation
Diffstat (limited to 'source/encoding.c')
-rw-r--r-- | source/encoding.c | 12 |
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 | ||
12 | const char charmap[] = { | 12 | const 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 | ||
20 | char debugGen3Decode(u8 val) | 20 | char debugGen3Decode(u8 val) |
21 | { | 21 | { |
22 | return charmap[val - 0xA0]; | 22 | return charmap[val - 0xA0]; |
23 | } | 23 | } |