Content deleted Content added
→Overview of functions: point to a C reference |
→Overview of functions: using the much more better wikipedia internal links SUS |
||
Line 15:
|-
! rowspan=4 | Terminating <br>a program
| {{anchor|abort}}<code>
| causes abnormal program termination (without cleaning up)
|-
| {{anchor|exit}}<code>
| causes normal program termination with cleaning up
|-
| {{anchor|_Exit}}<code>
| causes normal program termination without cleaning up ([[C99]])
|-
| {{anchor|atexit}}<code>
| registers a function to be called on exit() invocation
|-
! rowspan=2 | Communicating with<br>the environment
| {{anchor|getenv}}<code>
| accesses the list of the environment variables
|-
| {{anchor|system}}<code>
| calls the host environment's command processor
|}
|