/* ** -*- C -*- ** ** bytedecoders.h ** Made by Bruno JOFRET ** ** Started on Wed Oct 17 13:54:15 2007 bruno ** Last update Wed Oct 17 16:51:47 2007 bruno ** ** Copyright INRIA 2007 */ #ifndef __BYTEDECODERS_H__ #define __BYTEDECODERS_H__ /** @TODO : Comments ?? */ int get_1byte_value(unsigned char *start ); /** @TODO : Comments ?? */ int get_2byte_value(unsigned char *start ); /** @TODO : Comments ?? */ int get_4byte_value(unsigned char *start ); #endif /* __BYTEDECODERS_H__ */