acl/lib_acl/include/stdlib/acl_process.h

26 lines
603 B
C
Raw Normal View History

#ifndef ACL_PROCESS_INCLUDE_H
2014-11-19 00:25:21 +08:00
#define ACL_PROCESS_INCLUDE_H
#ifdef __cplusplus
extern "C" {
#endif
/**
*
* @return {const char*} NULL: ; != NULL:
*
2014-11-19 00:25:21 +08:00
*/
ACL_API const char *acl_process_path(void);
/**
*
* @return {const char*} NULL: ; != NULL:
2014-11-19 00:25:21 +08:00
*/
ACL_API const char *acl_getcwd(void);
#ifdef __cplusplus
}
#endif
#endif