HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/missing/stdbool.h
/*
 * missing/stdbool.h: Quick alternative of C99 stdbool.h
 */

#ifndef _MISSING_STDBOOL_H_
#define _MISSING_STDBOOL_H_

#ifndef __cplusplus

#define bool _Bool
#define true 1
#define false 0

#ifndef HAVE__BOOL /* AC_HEADER_STDBOOL in configure.ac */
typedef int _Bool;
#endif /* HAVE__BOOL */

#endif /* __cplusplus */

#endif /* _MISSING_STDBOOL_H_ */