Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 294 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 294 Bytes

pmx-parser

PMX model parser in C
See pmx_model.h for struct definitions.

Usage

PMXModel model;
if (pmx_parse(raw, &model)) {
	fprintf(stderr, "ERROR: Parse failed.\nMessage: %s", pmx_get_error_msg());
	exit(EXIT_FAILURE);
}

// Do operations...

pmx_free(&model);