/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2007 Dave Chapman * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #include #include #include #include #include #include #include #ifndef O_BINARY #define O_BINARY 0 #endif static off_t filesize(int fd) { struct stat buf; fstat(fd,&buf); return buf.st_size; } static int write_cfile(unsigned char* buf, off_t len, char* cname) { char filename[256]; FILE* fp; int i; snprintf(filename,256,"%s.c",cname); fp = fopen(filename,"w+"); if (fp == NULL) { fprintf(stderr,"Couldn't open %s\n",filename); return -1; } fprintf(fp,"/* Generated by ipod2c */\n\n"); fprintf(fp,"unsigned char %s[] = {",cname); for (i=0;i