Obsolete unused backup project such as OK6410
guowenxue
2019-08-04 a4f1135ccbefab1bb5564de7634d1f2b490d8071
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<stdio.h>
#include"decoder.h"
 
int main()
{
    struct code_msg msg;
 
    if(decoder(0,&msg)<0)
        return -1;
 
    printf("type:%s\n",msg.get_type_name);
    printf("data:%s\n",msg.get_data);
    return 0;
}