/b64

base64 lib in C

Primary LanguageC

Lib base64

Base64 encoding/decoding implemented in C

How to build

make static

# or

make shared

How to use

# Place libb64.a/libb64.so in your directory

# Compile your code with
gcc -L /path/to/directory/ -lb64


# If your project structure is like this 

project_dir
┃
┣━ bin
┣━ lib
┃  ┗━ libb64.a
┣━ obj
┗━ src 

# Then

$ gcc -L ./lib/ -lb64