Namespaces
Variants

quick_exit

From cppreference.com
Revision as of 15:04, 13 April 2012 by Eendy (talk | contribs) (Created page with "{{c/title| quick_exit}} {{c/program/sidebar}} {{ddcl | header=stdlib.h | notes={{mark since c99}} | void quick_exit( int exit_code ); }} Causes normal program termination to occ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:c/program/sidebar

Defined in header <stdlib.h>
void quick_exit( int exit_code );
(since C99)

Causes normal program termination to occur without completely cleaning the resources.

Functions passed to Template:cpp are called in reverse order of their registration. After calling the registered functions, calls Template:cpp

Parameters

exit_code - exit status of the program

Return value

(none)

Example

Template:example cpp

See also

Template:c/program/dcl list abortTemplate:c/program/dcl list atexitTemplate:c/program/dcl list at quick exit