Annotation of libaitcrc/example/test.c, revision 1.2

1.1       misho       1: #include <stdio.h>
                      2: #include <sys/types.h>
                      3: #include <aitcrc.h>
                      4: 
                      5: 
                      6: int main()
                      7: {
                      8:        register int cx = 0;
                      9:        int opt;
                     10:        char buf[200];
1.2     ! misho      11:                u_char pd[7] = { 0xFF, 0x01, 0x00, 0x04, 0x3F, 0x00, 0x01 };
        !            12:        u_char pp[8] = { 0xA0, 0x00, 0x00, 0x04, 0x20, 0x00, 0xAF, 0x01 };
1.1       misho      13: 
                     14:        printf("reflect=%lu\n", crcReflect(3001123, 32));
                     15: 
1.2     ! misho      16:        printf("pelco_d=0x%x pelco_p=0x%x\n", crcPelco('d', pd), crcPelco('p', pp));
        !            17: 
1.1       misho      18:        return 0;
                     19: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>