MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / csv_strerror

Function csv_strerror

libCacheSim/traceReader/generalReader/libcsv.c:84–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84const char *csv_strerror(int status) {
85 /* Return a textual description of status */
86 if (status >= CSV_EINVALID || status < 0)
87 return csv_errors[CSV_EINVALID];
88 else
89 return csv_errors[status];
90}
91
92int csv_get_opts(struct csv_parser *p) {
93 /* Return the currently set options of parser */

Callers 1

csv_read_one_reqFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected