Logo

Programming-Idioms

History of Idiom 87 > diff from v20 to v21

Edit summary for version 21 by fantasy:
New C implementation by user [fantasy]

Version 20

2016-12-24, 21:24:48

Version 21

2018-05-08, 00:35:14

Idiom #87 Stop program

Exit immediatly.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.

Idiom #87 Stop program

Exit immediatly.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.

Imports
#include <stdlib.h>
Code
exit (EXIT_SUCCESS);