summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Base64.c
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of ↵Brad King2005-07-261-1/+0
| | | | building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros.
* BUG: Do not increment optr by 2 after storing only one character. Also ↵Brad King2005-06-301-5/+16
| | | | fixed possibility of storing uninitialized characters from the last triplet.
* COMP: Adding work-around for CMake dependency scanning limitation. Any ↵Brad King2005-04-131-0/+6
| | | | configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies.
* BUG: encoding 2 bytes into 4 bytes was accessing a 3rd byte from the sourceJim Miller2005-01-121-1/+1
|
* ENH: Updated copyright.Brad King2003-12-151-10/+7
|
* ENH: Added use of KWSYS_HEADER macro in c and cxx files to include kwsys ↵Brad King2003-07-101-1/+2
| | | | headers through their configured namespace.
* ERR: Added casts to remove type conversion warnings. Pointer differences ↵Brad King2003-07-011-6/+11
| | | | can be 64-bit, but unsigned long is 32-bit on many platforms. We know we are not traversing more data than can be handled by an unsigned long, though, because the length argument is an unsigned long.
* ERR: Remove warnings on WindowsAndy Cedilnik2003-06-301-5/+5
|
* BUG: Should define KWSYS_IN_BASE64_C, not KWSYS_IN_PROCESS_C.Brad King2003-06-301-1/+1
|
* ENH: Initial import of Base64Andy Cedilnik2003-06-301-0/+262