Files
Programutvecklingsmetodik/Template_List/boolean.h
2026-03-05 13:44:23 +01:00

6 lines
115 B
C

#ifndef __BOOLEAN_H_
#define __BOOLEAN_H_
typedef int boolean;
//const int FALSE=0;
//const int TRUE=!FALSE;
#endif