File: stdbool.h

package info (click to toggle)
ruby-ffi 1.9.6debian-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,376 kB
  • ctags: 2,126
  • sloc: ansic: 7,471; ruby: 5,585; sh: 24; makefile: 14
file content (8 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#ifndef FFI_STDBOOL_H
#define FFI_STDBOOL_H

typedef int bool;
#define true 1
#define false 0

#endif /* FFI_STDBOOL_H */