MCPcopy Index your code
hub / github.com/RsyncProject/rsync / strerror

Function strerror

popt/popt.c:38–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37#if !defined(HAVE_STRERROR)
38static char * strerror(int errno)
39{
40 extern int sys_nerr;
41 extern char * sys_errlist[];
42
43 if ((0 <= errno) && (errno < sys_nerr))
44 return sys_errlist[errno];
45 else
46 return POPT_("unknown errno");
47}
48#endif
49
50#ifdef MYDEBUG

Callers 15

parse_argumentsFunction · 0.85
rsyserrFunction · 0.85
rsyserrFunction · 0.85
stat_xattrFunction · 0.85
failedFunction · 0.85
default_perms_for_dirFunction · 0.85
open_socket_inFunction · 0.85
checkFunction · 0.85
check_relpathFunction · 0.85
check_basedirFunction · 0.85
mainFunction · 0.85
recv_file_entryFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68