|
cocos2d for iPhone 1.0.0
2D engine for iOS and OS X
|
00001 /* 00002 public domain BASE64 code 00003 00004 modified for cocos2d-iphone: http://www.cocos2d-iphone.org 00005 */ 00006 00007 #ifndef __CC_BASE64_DECODE_H 00008 #define __CC_BASE64_DECODE_H 00009 00010 #ifdef __cplusplus 00011 extern "C" { 00012 #endif 00013 00014 00027 int base64Decode(unsigned char *in, unsigned int inLength, unsigned char **out); 00028 00029 #ifdef __cplusplus 00030 } 00031 #endif 00032 00033 #endif // __CC_BASE64_DECODE_H