The threading interface header requires the following: ```c struct _NpmThread { void *id; int Reap(void); int Prune(void); }; typedef _NpmThread NpmThread; NpmThread* Sow(void (*entry)(void *), void *args, uint32_t argLen); void Cleanup(NpmThread** th); ``` - [ ] Doxygen comments - [ ] GTest for the interface
The threading interface header requires the following: