mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 01:39:20 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
20 lines
No EOL
342 B
C
20 lines
No EOL
342 B
C
#include "lpc10_wrapper.c"
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
{
|
|
FILE *input;
|
|
int i;
|
|
unsigned char buffer[10];
|
|
INT32 bits[54];
|
|
|
|
input=fopen("/tmp/dam9.bits","r");
|
|
if (input==NULL) printf("error opening file\n");
|
|
fread(buffer,7,1,input);
|
|
read_bits(buffer,bits,54);
|
|
for (i=0;i<54;i++) printf("%i ",bits[i]);
|
|
fclose(input);
|
|
return(0);
|
|
} |