Mercurial > libpst
comparison src/libstrfunc.c @ 123:ab2a11e72250
more cleanup of #include files.
common.h is the only file allowed to include system .h files
unprotected by autoconf HAVE_ symbols. define.h is the only other file
allowed to include system .h files. define.h is never installed;
common.h is installed if we are building the shared library.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 03 Feb 2009 10:59:10 -0800 |
parents | 7133b39975f7 |
children | fc11b1d1ad34 |
comparison
equal
deleted
inserted
replaced
122:bdb38b434c0a | 123:ab2a11e72250 |
---|---|
1 | 1 |
2 /* Taken from LibStrfunc v7.3 */ | 2 /* Taken from LibStrfunc v7.3 */ |
3 | 3 |
4 #include <stdio.h> | 4 #include "common.h" |
5 #include <ctype.h> | |
6 #include <stdlib.h> | |
7 #include "libstrfunc.h" | 5 #include "libstrfunc.h" |
6 | |
7 #include "define.h" | |
8 | 8 |
9 | 9 |
10 static char base64_code_chars[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=="; | 10 static char base64_code_chars[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=="; |
11 | 11 |
12 void base64_append(char **ou, int *line_count, char data) | 12 void base64_append(char **ou, int *line_count, char data) |