1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // stdlib -- |
---|
8 | // |
---|
9 | // Author : Peter A. Buhr |
---|
10 | // Created On : Thu Jan 28 17:12:35 2016 |
---|
11 | // Last Modified By : Peter A. Buhr |
---|
12 | // Last Modified On : Wed Jul 6 14:28:55 2016 |
---|
13 | // Update Count : 99 |
---|
14 | // |
---|
15 | |
---|
16 | //--------------------------------------- |
---|
17 | |
---|
18 | extern "C" { |
---|
19 | #ifndef EXIT_FAILURE |
---|
20 | #define EXIT_FAILURE 1 // failing exit status |
---|
21 | #define EXIT_SUCCESS 0 // successful exit status |
---|
22 | #endif // ! EXIT_FAILURE |
---|
23 | } // extern "C" |
---|
24 | |
---|
25 | //--------------------------------------- |
---|
26 | |
---|
27 | extern "C" { void * malloc( size_t ); } // use default C routine for void * |
---|
28 | forall( otype T ) T * malloc( void ); |
---|
29 | forall( otype T ) T * malloc( char fill ); |
---|
30 | forall( otype T ) T * malloc( T * ptr, size_t size ); |
---|
31 | forall( otype T ) T * malloc( T * ptr, size_t size, unsigned char fill ); |
---|
32 | extern "C" { void * calloc( size_t nmemb, size_t size ); } // use default C routine for void * |
---|
33 | forall( otype T ) T * calloc( size_t nmemb ); |
---|
34 | extern "C" { void * realloc( void * ptr, size_t size ); } // use default C routine for void * |
---|
35 | forall( otype T ) T * realloc( T * ptr, size_t size ); |
---|
36 | forall( otype T ) T * realloc( T * ptr, size_t size, unsigned char fill ); |
---|
37 | |
---|
38 | forall( otype T ) T * aligned_alloc( size_t alignment ); |
---|
39 | forall( otype T ) T * memalign( size_t alignment ); // deprecated |
---|
40 | forall( otype T ) int posix_memalign( T ** ptr, size_t alignment ); |
---|
41 | |
---|
42 | extern "C" { |
---|
43 | void * memset( void * ptr, int fill, size_t size ); |
---|
44 | void free( void * ptr ); |
---|
45 | } // extern "C" |
---|
46 | |
---|
47 | //--------------------------------------- |
---|
48 | |
---|
49 | int ato( const char * ptr ); |
---|
50 | unsigned int ato( const char * ptr ); |
---|
51 | long int ato( const char * ptr ); |
---|
52 | unsigned long int ato( const char * ptr ); |
---|
53 | long long int ato( const char * ptr ); |
---|
54 | unsigned long long int ato( const char * ptr ); |
---|
55 | float ato( const char * ptr ); |
---|
56 | double ato( const char * ptr ); |
---|
57 | long double ato( const char * ptr ); |
---|
58 | float _Complex ato( const char * ptr ); |
---|
59 | double _Complex ato( const char * ptr ); |
---|
60 | long double _Complex ato( const char * ptr ); |
---|
61 | |
---|
62 | int strto( const char * sptr, char ** eptr, int base ); |
---|
63 | unsigned int strto( const char * sptr, char ** eptr, int base ); |
---|
64 | long int strto( const char * sptr, char ** eptr, int base ); |
---|
65 | unsigned long int strto( const char * sptr, char ** eptr, int base ); |
---|
66 | long long int strto( const char * sptr, char ** eptr, int base ); |
---|
67 | unsigned long long int strto( const char * sptr, char ** eptr, int base ); |
---|
68 | float strto( const char * sptr, char ** eptr ); |
---|
69 | double strto( const char * sptr, char ** eptr ); |
---|
70 | long double strto( const char * sptr, char ** eptr ); |
---|
71 | float _Complex strto( const char * sptr, char ** eptr ); |
---|
72 | double _Complex strto( const char * sptr, char ** eptr ); |
---|
73 | long double _Complex strto( const char * sptr, char ** eptr ); |
---|
74 | |
---|
75 | //--------------------------------------- |
---|
76 | |
---|
77 | forall( otype T | { int ?<?( T, T ); } ) |
---|
78 | T * bsearch( T key, const T * arr, size_t dimension ); |
---|
79 | |
---|
80 | forall( otype T | { int ?<?( T, T ); } ) |
---|
81 | void qsort( const T * arr, size_t dimension ); |
---|
82 | |
---|
83 | //--------------------------------------- |
---|
84 | |
---|
85 | forall( otype T | { T ?/?( T, T ); T ?%?( T, T ); } ) |
---|
86 | [ T, T ] div( T t1, T t2 ); |
---|
87 | |
---|
88 | //--------------------------------------- |
---|
89 | |
---|
90 | char abs( char ); |
---|
91 | extern "C" { int abs( int ); } // use default C routine for int |
---|
92 | long int abs( long int ); |
---|
93 | long long int abs( long long int ); |
---|
94 | float abs( float ); |
---|
95 | double abs( double ); |
---|
96 | long double abs( long double ); |
---|
97 | float abs( float _Complex ); |
---|
98 | double abs( double _Complex ); |
---|
99 | long double abs( long double _Complex ); |
---|
100 | |
---|
101 | //--------------------------------------- |
---|
102 | |
---|
103 | void rand48seed( long int s ); |
---|
104 | char rand48(); |
---|
105 | int rand48(); |
---|
106 | unsigned int rand48(); |
---|
107 | long int rand48(); |
---|
108 | unsigned long int rand48(); |
---|
109 | float rand48(); |
---|
110 | double rand48(); |
---|
111 | float _Complex rand48(); |
---|
112 | double _Complex rand48(); |
---|
113 | long double _Complex rand48(); |
---|
114 | |
---|
115 | //--------------------------------------- |
---|
116 | |
---|
117 | forall( otype T | { int ?<?( T, T ); } ) |
---|
118 | T min( T t1, T t2 ); |
---|
119 | |
---|
120 | forall( otype T | { int ?>?( T, T ); } ) |
---|
121 | T max( T t1, T t2 ); |
---|
122 | |
---|
123 | forall( otype T | { T min( T, T ); T max( T, T ); } ) |
---|
124 | T clamp( T value, T min_val, T max_val ); |
---|
125 | |
---|
126 | forall( otype T ) |
---|
127 | void swap( T * t1, T * t2 ); |
---|
128 | |
---|
129 | // Local Variables: // |
---|
130 | // mode: c // |
---|
131 | // tab-width: 4 // |
---|
132 | // End: // |
---|