MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_getcwd

Function acl_getcwd

lib_acl/src/stdlib/sys/acl_process.c:61–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61const char *acl_getcwd(void)
62{
63 const char *myname = "acl_getcwd";
64 char *buf_ptr = get_tls_buf();
65 char *ptr;
66
67 ptr = getcwd(buf_ptr, BUF_SIZE);
68 if (ptr == NULL) {
69 acl_msg_error("%s(%d): getcwd error(%s)",
70 myname, __LINE__, acl_last_serror());
71 }
72 return (ptr);
73}
74#elif defined(ACL_FREEBSD)
75const char *acl_process_path(void)
76{

Callers 3

mainFunction · 0.85
OnInitDialogMethod · 0.85
OnBnClickedOpenDosMethod · 0.85

Calls 3

get_tls_bufFunction · 0.85
acl_msg_errorFunction · 0.85
acl_last_serrorFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…