tags:

views:

78

answers:

1

Possible Duplicate:
How do I base64 encode (decode) in C?

Hello All,

Is there any way i can only decode the base64 string in C ?

Thanks, Neel

+1  A: 

I'm normally not one to say "just google it" when discussion brings out different things than searching, but googling for base64 c returns a bunch of implementations in the first page of results, such as http://base64.sourceforge.net/b64.c

Jon Hanna