Last change
on this file since 86 was 86, checked in by cheese, 12 years ago |
#1 fix datetime in log for win64 and rename some enumerations and functions
|
File size:
786 bytes
|
Rev | Line | |
---|
[66] | 1 | /**
|
---|
| 2 | * @file codec.c
|
---|
| 3 | * @author myusgun <myusgun@gmail.com>
|
---|
| 4 | */
|
---|
| 5 | #include "cf_codec.h"
|
---|
| 6 | #include "cf_debug.h"
|
---|
| 7 | #include <stdio.h>
|
---|
| 8 | #include <string.h>
|
---|
| 9 |
|
---|
| 10 | int main (void)
|
---|
| 11 | {
|
---|
[68] | 12 | char data[] = "ONE OK ROCK - Nothing Helps";
|
---|
[66] | 13 |
|
---|
| 14 | char hex[512] = {0x00,};
|
---|
| 15 | unsigned char bin[512] = {0x00,};
|
---|
| 16 | size_t length = 0;
|
---|
| 17 |
|
---|
[72] | 18 | CF_DEBUG_PRINT (stderr, "data : %s\n", data);
|
---|
| 19 | CF_DEBUG_PRINT (stderr, "= Convert binary to hex =\n");
|
---|
[86] | 20 | CF_Codec_Hex_Encode ((unsigned char *)data, strlen (data), hex);
|
---|
[72] | 21 | CF_DEBUG_PRINT (stderr, "hex : %s\n", hex);
|
---|
| 22 | CF_DEBUG_PRINT_BIN (stderr, (unsigned char *) data, strlen (data), "data : %s\n", data);
|
---|
[66] | 23 |
|
---|
[72] | 24 | CF_DEBUG_PRINT (stderr, "= Convert hex to binary =\n");
|
---|
[86] | 25 | CF_Codec_Hex_Decode (hex, bin, &length);
|
---|
[72] | 26 | CF_DEBUG_PRINT_BIN (stderr, bin, length, "bin : %s\n", bin);
|
---|
[66] | 27 |
|
---|
| 28 | return 0;
|
---|
| 29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.