/* * bit.h * * bit value */ #ifndef _bit_H_ #define _bit_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" typedef struct bit_t bit_t; // Enum for bit typedef enum { openapi_petstore_bit__NULL = 0, openapi_petstore_bit___0, openapi_petstore_bit___1 } openapi_petstore_bit__e; char* bit_bit_ToString(openapi_petstore_bit__e bit); openapi_petstore_bit__e bit_bit_FromString(char* bit); cJSON *bit_convertToJSON(openapi_petstore_bit__e bit); openapi_petstore_bit__e bit_parseFromJSON(cJSON *bitJSON); #endif /* _bit_H_ */