編集：高畑ラボ
boolを扱う簡単なモジュールです
ver 0.1.002

// モジュールの属性
#ifndef bool_def
#define global bool_def
#module mod_bool

// 定数
#const global true 1
#const global false 0
#define global true_str "true"
#define global false_str "false"

// 関数
#defcfunc bool int __p
__pが0なら0を返します
それ以外は1を返します

#defcfunc isTrue int ___p
___pが0なら0を返します
それ以外は1を返します

#defcfunc isFalse int ___p
___pが0なら1を返します
それ以外は0を返します

#defcfunc bool_str int ___p
___pが0なら"false"を返します
それ以外は"true"を返します

詳しくはスクリプトを直接見た方が
いいかもしれません
EOF