CF_Result¶
Category: utility
GitHub: cute_result.h
Information about the result of a function, containing any potential error details.
Struct Members | Description |
---|---|
int code |
Either 0 for success, or -1 for failure. |
const char* details |
String containing details about any error encountered. |
Remarks¶
Check if a result is an error or not with cf_is_error.
Related Pages¶
cf_result_success
cf_is_error
cf_result_make
cf_result_error