Home
last modified time | relevance | path

Searched refs:p_get_environ (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rostests/winetests/msvcrt/
H A Denviron.c50 static void (*p_get_environ)(char ***); variable
64 p_get_environ = (void *)GetProcAddress(hmod, "_get_environ"); in init()
102 if (p_get_environ) in test__environ()
105 p_get_environ(&retptr); in test__environ()
/reactos/modules/rostests/apitests/crt/
H A Dcrtdata.c37 errno_t (__cdecl *p_get_environ)(_Out_ char***);
346 if (p_get_environ != NULL) in Test__environ()
349 ok_int(p_get_environ(&result_environ), 0); in Test__environ()
659 p_get_environ = (void*)GetProcAddress(hmsvcrt, "_get_environ"); in START_TEST()
673 ok(p_get_environ != NULL, "_get_environ is NULL\n"); in START_TEST()