Function | Header File | Page | Description |
---|---|---|---|
abort() | stdlib.h | "abort() -- Stop a Program" | Ends a program abnormally. |
_C_Get_Ssn_Handle() | stdio.h | "_C_Get_Ssn_Handle() -- Handle to C Session" | Returns a handle to the C session for use with DSM APIs. |
exit() | stdlib.h | "exit() -- End Program" | Ends the program normally if called in the initial thread. |
getenv() | stdlib.h | "getenv() -- Search for Environment Variables" | Searches environment variables for a specified variable. |
localeconv() | locale.h | "localeconv() -- Retrieve Information from the Environment" | Formats numeric quantities in struct lconv according to the current locale. |
longjmp() | setjmp.h | "longjmp() -- Restore Stack Environment" | Restores a stack environment. |
nl_langinfo() | langinfo.h | "nl_langinfo() --Retrieve Locale Information" | Retrieves information from the current locale. |
putenv() | stdlib.h | "putenv() -- Change/Add Environment Variables" | Sets the value of an environment variable by altering an existing variable or creating a new one. |
setjmp() | setjmp.h | "setjmp() -- Preserve Environment" | Saves a stack environment. |
setlocale() | locale.h | "setlocale() -- Set Locale" | Changes or queries locale. |
system() | stdlib.h | "system() -- Execute a Command" | Passes a string to the operating system's command interpreter. |
wcslocaleconv() | locale.h | "wcslocaleconv() -- Retrieve Wide Locale Information" | Formats numeric quantities in struct wcslconv according to the current locale. |
(C) Copyright IBM Corporation 1992, 2006. All Rights Reserved.