Contiki 2.5
ihex.h
1 #ifndef _IHEX_H
2 #define _IHEX_H
3 
4 extern int hexfile_parse(char *line, unsigned char *type, unsigned int *addr, char *buffer);
5 extern int hexfile_out(char *line, unsigned int type, unsigned int address, unsigned char *data, unsigned int bytes);
6 
7 #endif /*_IHEX_H*/