c9469b64fc3933d0565ffba8a45be8a39df6b927
Stefan Schuermans cleanup file headers after...

Stefan Schuermans authored 13 years ago

BlinkenLib/Tools.h  1) /* BlinkenLib
Stefan Schuermans update email address of author

Stefan Schuermans authored 10 years ago

BlinkenLib/Tools.h  2)    Copyright 2004-2014 Stefan Schuermans <stefan@schuermans.info>
Stefan Schuermans cleanup file headers after...

Stefan Schuermans authored 13 years ago

BlinkenLib/Tools.h  3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
BlinkenLib/Tools.h  4)    a blinkenarea.org project */
Christian Heimke BlinkenLib v.0.1.1 (2005-01...

Christian Heimke authored 13 years ago

Tools.h             5) 
Christian Heimke BlinkenLib v.0.5.5 (2008-03...

Christian Heimke authored 13 years ago

BlinkenLib/Tools.h  6) #ifndef INC_BlinkenLib_Tools
BlinkenLib/Tools.h  7) #define INC_BlinkenLib_Tools
Christian Heimke BlinkenLib v.0.1.1 (2005-01...

Christian Heimke authored 13 years ago

Tools.h             8) 
Christian Heimke BlinkenLib v.0.5.4 (2008-01...

Christian Heimke authored 13 years ago

Tools.h             9) #ifndef maxi
Tools.h            10) #define maxi( a, b ) ((a) > (b) ? (a) : (b))
Tools.h            11) #endif
Tools.h            12) 
Tools.h            13) #ifndef mini
Tools.h            14) #define mini( a, b ) ((a) < (b) ? (a) : (b))
Tools.h            15) #endif
Tools.h            16) 
Tools.h            17) #ifndef arr_cnt
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

Tools.h            18) #define arr_cnt( arr ) (sizeof( (arr) ) / sizeof( (arr)[0] ))
Christian Heimke BlinkenLib v.0.5.4 (2008-01...

Christian Heimke authored 13 years ago

Tools.h            19) #endif
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

Tools.h            20) 
Stefan Schuermans adaptions for usage in C++

Stefan Schuermans authored 13 years ago

BlinkenLib/Tools.h 21) #ifdef __cplusplus
BlinkenLib/Tools.h 22) extern "C" {
BlinkenLib/Tools.h 23) #endif
BlinkenLib/Tools.h 24) 
BlinkenLib/Tools.h 25) void *BlinkenMalloc1D(int count1, int size);
Christian Heimke BlinkenLib v.0.1.1 (2005-01...

Christian Heimke authored 13 years ago

Tools.h            26) 
Stefan Schuermans adaptions for usage in C++

Stefan Schuermans authored 13 years ago

BlinkenLib/Tools.h 27) void **BlinkenMalloc2D(int count1, int count2, int size);
BlinkenLib/Tools.h 28) 
BlinkenLib/Tools.h 29) #ifdef __cplusplus
BlinkenLib/Tools.h 30) } // extern "C"
BlinkenLib/Tools.h 31) #endif
Christian Heimke BlinkenLib v.0.1.1 (2005-01...

Christian Heimke authored 13 years ago

Tools.h            32)