blob: 3a53e951f83d98634fc5ce23f51c8971830f5cea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
** -*- C -*-
**
** bytedecoders.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** 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__ */
|