10 lines
133 B
C
10 lines
133 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "boolean.h"
|
|
|
|
const char* const bool_str_g[]={
|
|
"FALSE",
|
|
"TRUE",
|
|
NULL
|
|
};
|