File: boolean.h

package info (click to toggle)
ptop 3.6.2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,356 kB
  • ctags: 2,292
  • sloc: ansic: 18,216; sh: 3,493; makefile: 122; awk: 44
file content (9 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#ifndef _BOOLEAN_H_
#define _BOOLEAN_H_

/* My favorite names for boolean values */
#define  No 0
#define  Yes	1
#define  Maybe	2				/* tri-state boolean, actually */

#endif   /* _BOOLEAN_H_ */