Merge pull request #16 from sergof/patch-1

Add extern "C" directive
This commit is contained in:
Richard Knight 2020-03-24 08:51:12 +00:00 committed by GitHub
commit e16fb04bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,10 +132,17 @@ typedef struct
} fastObjMesh;
#ifdef __cplusplus
extern "C" {
#endif
fastObjMesh* fast_obj_read(const char* path);
void fast_obj_destroy(fastObjMesh* mesh);
#ifdef __cplusplus
}
#endif
#endif