Added more explicit signed/unsigned types for use in DSP code.

This commit is contained in:
Morten Rolland 1999-01-06 00:04:23 +00:00
parent cd8f23b2f1
commit 43330800f6
1 changed files with 10 additions and 5 deletions

View File

@ -6,14 +6,19 @@
/* FIXME - We should autoconf that !
*/
#ifndef _IFAX_TYPES_H
#define _IFAX_TYPES_H
typedef unsigned char ifax_uint8;
typedef signed char ifax_int8;
typedef signed char ifax_sint8;
typedef char ifax_int8;
typedef unsigned short ifax_uint16;
typedef short ifax_int16;
typedef signed short ifax_sint16;
typedef short ifax_int16;
typedef unsigned int ifax_uint32;
typedef int ifax_int32;
typedef signed int ifax_sint32;
typedef int ifax_int32;
//typedef unsigned long long ifax_uint64;
//typedef long long ifax_int64;
#endif