1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/* at_quick_exit( void (*)( void ) )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
#include <stdlib.h>
#ifndef REGTEST
extern void ( *_PDCLIB_quickexitstack[] )( void );
extern size_t _PDCLIB_quickexitptr;
int at_quick_exit( void ( *func )( void ) )
{
if ( _PDCLIB_quickexitptr == _PDCLIB_ATEXIT_SLOTS )
{
return -1;
}
else
{
_PDCLIB_quickexitstack[ _PDCLIB_quickexitptr++ ] = func;
return 0;
}
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
#include <assert.h>
#if ! defined( REGTEST ) || __STDC_VERSION__ >= 201112L
static int flags[ 32 ];
static void counthandler( void )
{
static int count = 0;
flags[ count ] = count;
++count;
}
static void checkhandler( void )
{
int i;
for ( i = 0; i < 32; ++i )
{
assert( flags[ i ] == i );
}
}
#endif
int main( void )
{
#if ! defined( REGTEST ) || __STDC_VERSION__ >= 201112L
int i;
TESTCASE( at_quick_exit( &checkhandler ) == 0 );
for ( i = 0; i < 32; ++i )
{
TESTCASE( at_quick_exit( &counthandler ) == 0 );
}
#endif
return TEST_RESULTS;
}
#endif
|