CMarshal brings Go style JSON marshaling / unmarshaling to C.<p>You can generate cJSON based JSON serializers and deserializers by adding a /* cmarshal:`true` */ comment to your C struct.<p>Potential use cases:<p>* Auto-generated JSON config parsers<p>* Simple struct printer (as a debugging mechanism, my goal in mind for this project)<p>* Introspecting C structs using cJSON API<p>* Easily bloat your program line count! (not the intended use case, of course)<p>Let me know how you think about this.*