Go to the source code of this file.
Functions | |
| MRC_API MR_std_vector_uint64_t * | MR_splitByLines (const char *data, MR_uint64_t size) |
| MRC_API MR_expected_void_std_string * | MR_parseFirstNum (const char *str, const char *str_end, int *num) |
| MRC_API MR_expected_void_std_string * | MR_parsePolygon (const char *str, const char *str_end, MR_VertId *vertId, int *numPoints) |
| MRC_API bool | MR_hasBom (const char *str, const char *str_end) |
| MRC_API bool MR_hasBom | ( | const char * | str, |
| const char * | str_end ) |
Generated from function MR::hasBom. Parameter str can not be null. If str_end is null, then str is assumed to be null-terminated.
| MRC_API MR_expected_void_std_string * MR_parseFirstNum | ( | const char * | str, |
| const char * | str_end, | ||
| int * | num ) |
Generated from function MR::parseFirstNum. Parameter str can not be null. If str_end is null, then str is assumed to be null-terminated. Parameter num can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_void_std_string_Destroy() to free it when you're done using it.
| MRC_API MR_expected_void_std_string * MR_parsePolygon | ( | const char * | str, |
| const char * | str_end, | ||
| MR_VertId * | vertId, | ||
| int * | numPoints ) |
Generated from function MR::parsePolygon. Parameter str can not be null. If str_end is null, then str is assumed to be null-terminated. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_void_std_string_Destroy() to free it when you're done using it.
| MRC_API MR_std_vector_uint64_t * MR_splitByLines | ( | const char * | data, |
| MR_uint64_t | size ) |
Generated from function MR::splitByLines. Never returns null. Returns an instance allocated on the heap! Must call MR_std_vector_uint64_t_Destroy() to free it when you're done using it.