AC-Tube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
actube/src/cw/cw_put_image_data.c

26 lines
303 B

#include "cw.h"
int cw_put_image_data(uint8_t *dst,FILE *infile)
{
int bytes = fread(dst+1,1,1024,infile);
if (ferror(infile)){
cw_set_byte(dst+0,5);
return 1;
}
if ( feof(infile)){
/* Last image block */
cw_set_byte(dst,2);
}
else{
cw_set_byte(dst,1);
}
return bytes+1;
}