File: std.h

package info (click to toggle)
pilrc 2.4-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 524 kB
  • ctags: 1,121
  • sloc: ansic: 6,584; asm: 137; makefile: 55
file content (16 lines) | stat: -rw-r--r-- 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __STD_H__
#define __STD_H__


typedef int BOOL;
#define fTrue 1
#define fFalse 0
#define VOID void

typedef unsigned char BYTE;

#include <assert.h>
#define Assert(f) assert(f)


#endif /*__STD_H__*/