Changeset 5721a6d for src/libcfa/algorithm
- Timestamp:
- Feb 1, 2016, 2:24:50 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 2a4b088, b4cd03b7
- Parents:
- ae8b942
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/algorithm
rae8b942 r5721a6d 10 10 // Created On : Thu Jan 28 17:12:35 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jan 29 14:57:51 201613 // Update Count : 2 012 // Last Modified On : Mon Feb 1 13:41:51 2016 13 // Update Count : 26 14 14 // 15 16 //--------------------------------------- 15 17 16 18 forall( type T | { int ?<?( T, T ); } ) … … 19 21 forall( type T | { int ?>?( T, T ); } ) 20 22 T max( const T t1, const T t2 ); 23 24 //--------------------------------------- 25 26 forall( type T ) 27 void swap( T * t1, T * t2 ); 28 29 //--------------------------------------- 21 30 22 31 char abs( char ); … … 33 42 long double _Complex abs( long double _Complex ); 34 43 44 //--------------------------------------- 45 46 void randseed( long int s ); 47 char random(); 48 int random(); 49 unsigned int random(); 50 long int random(); 51 unsigned long int random(); 52 float random(); 53 double random(); 54 float _Complex random(); 55 double _Complex random(); 56 long double _Complex random(); 57 35 58 // Local Variables: // 36 59 // mode: c //
Note: See TracChangeset
for help on using the changeset viewer.