c3d5a66774e9fac1bc95fa7c700db7587a1ac9e1
Stefan Schuermans cleanup file headers after...

Stefan Schuermans authored 13 years ago

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

Stefan Schuermans authored 10 years ago

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

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h  3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
BlinkenLib/BlinkenColorizer.h  4)    a blinkenarea.org project */
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

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

Christian Heimke authored 13 years ago

BlinkenLib/BlinkenColorizer.h  6) #ifndef INC_BlinkenLib_BlinkenColorizer
BlinkenLib/BlinkenColorizer.h  7) #define INC_BlinkenLib_BlinkenColorizer
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

BlinkenColorizer.h             8) 
Stefan Schuermans adaptions for usage in C++

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h  9) #ifdef __cplusplus
BlinkenLib/BlinkenColorizer.h 10) extern "C" {
BlinkenLib/BlinkenColorizer.h 11) #endif
BlinkenLib/BlinkenColorizer.h 12) 
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

BlinkenColorizer.h            13) // convert string to colorizing mode
BlinkenColorizer.h            14) // returns colorizing mode (>= 0) or -1 on error
Stefan Schuermans changed indenting to be mor...

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h 15) int BlinkenColorizerStr2Mode(const char *str);
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

BlinkenColorizer.h            16) 
BlinkenColorizer.h            17) // convert colorizing mode to string
Stefan Schuermans changed indenting to be mor...

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h 18) const char *BlinkenColorizerMode2Str(int mode);
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

BlinkenColorizer.h            19) 
BlinkenColorizer.h            20) // get color for colorizing
Stefan Schuermans changed indenting to be mor...

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h 21) unsigned char BlinkenColorizerGetColor(int channels, int mode, int step,
BlinkenLib/BlinkenColorizer.h 22)                                        int y, int x, int c);
Christian Heimke BlinkenLib v.0.5.3 (2007-12...

Christian Heimke authored 13 years ago

BlinkenColorizer.h            23) 
Stefan Schuermans adaptions for usage in C++

Stefan Schuermans authored 13 years ago

BlinkenLib/BlinkenColorizer.h 24) #ifdef __cplusplus
BlinkenLib/BlinkenColorizer.h 25) } // extern "C"
BlinkenLib/BlinkenColorizer.h 26) #endif
BlinkenLib/BlinkenColorizer.h 27)