vecxoz's picture
Add files using upload-large-folder tool
e08e4b2 verified
Raw
History Blame Contribute Delete
627 Bytes
/* file boolpr1.c */
#include "sctk.h"
/**********************************************************************/
/* */
/* char *bool_print(x) */
/* */
/* Returns the printing equivalent of the boolean *x. */
/* */
/**********************************************************************/
char *bool_print(boolean x) {if (x) return "T"; else return "F";}