void sttype_register_pointer(void) { static sttype_t field_type = { STTYPE_FIELD, "FIELD", NULL, NULL, }; static sttype_t fvalue_type = { STTYPE_FVALUE, "FVALUE", NULL, NULL, }; sttype_register(&field_type); sttype_register(&fvalue_type); }
void sttype_register_string(void) { static sttype_t string_type = { STTYPE_STRING, "STRING", string_new, string_free, }; static sttype_t unparsed_type = { STTYPE_UNPARSED, "UNPARSED", string_new, string_free, }; sttype_register(&string_type); sttype_register(&unparsed_type); }
void sttype_register_function(void) { static sttype_t function_type = { STTYPE_FUNCTION, "FUNCTION", function_new, function_free, }; sttype_register(&function_type); }
void sttype_register_range(void) { static sttype_t range_type = { STTYPE_RANGE, "RANGE", range_new, range_free, }; sttype_register(&range_type); }
void sttype_register_test(void) { static sttype_t test_type = { STTYPE_TEST, "TEST", test_new, test_free, }; sttype_register(&test_type); }
void sttype_register_set(void) { static sttype_t set_type = { STTYPE_SET, "SET", NULL, NULL, NULL }; sttype_register(&set_type); }
void sttype_register_integer(void) { static sttype_t integer_type = { STTYPE_INTEGER, "INTEGER", NULL, NULL, NULL }; sttype_register(&integer_type); }