15 lines
340 B
C
15 lines
340 B
C
/*
|
|
ccommon.h - common header for encoding and decoding algorithm
|
|
|
|
This is part of the libb64 project, and has been placed in the public domain.
|
|
For details, see http://sourceforge.net/projects/libb64
|
|
*/
|
|
|
|
#ifndef BASE64_CCOMMON_H
|
|
#define BASE64_CCOMMON_H
|
|
|
|
#define BASE64_VER_MAJOR 2
|
|
#define BASE64_VER_MINOR 0
|
|
|
|
#endif /* BASE64_CCOMMON_H */
|