mowgli_config.h   mowgli_config.h 
skipping to change at line 133 skipping to change at line 133
slash. */ slash. */
#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
/* Define to the address where bug reports for this package should be sent. */ /* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "bugs+libmowgli@atheme.org" #define PACKAGE_BUGREPORT "bugs+libmowgli@atheme.org"
/* Define to the full name of this package. */ /* Define to the full name of this package. */
#define PACKAGE_NAME "libmowgli" #define PACKAGE_NAME "libmowgli"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "libmowgli 0.7.0" #define PACKAGE_STRING "libmowgli 0.7.1"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libmowgli" #define PACKAGE_TARNAME "libmowgli"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "0.7.0" #define PACKAGE_VERSION "0.7.1"
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1 #define STDC_HEADERS 1
/* Define to empty if `const' does not conform to ANSI C. */ /* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */ /* #undef const */
 End of changes. 3 change blocks. 
2 lines changed or deleted 5 lines changed or added


 mowgli_logger.h   mowgli_logger.h 
skipping to change at line 29 skipping to change at line 29
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef __MOWGLI_LOGGER_H__ #ifndef __MOWGLI_LOGGER_H__
#define __MOWGLI_LOGGER_H__ #define __MOWGLI_LOGGER_H__
typedef void (*mowgli_log_cb_t)(const char *); typedef void (*mowgli_log_cb_t)(const char *);
#ifdef WIN32_MSC
# define __func__ __FUNCTION__
#endif
#ifdef __GNUC__ #ifdef __GNUC__
# define mowgli_log(...) mowgli_log_real(__FILE__, __LINE__, __PRETTY_FUNCT ION__, __VA_ARGS__) # define mowgli_log(...) mowgli_log_real(__FILE__, __LINE__, __PRETTY_FUNCT ION__, __VA_ARGS__)
#else #else
# define mowgli_log(...) mowgli_log_real(__FILE__, __LINE__, __func__, __VA _ARGS__) # define mowgli_log(...) mowgli_log_real(__FILE__, __LINE__, __func__, __VA _ARGS__)
#endif #endif
extern void mowgli_log_real(const char *file, int line, const char *func, c onst char *buf, ...); extern void mowgli_log_real(const char *file, int line, const char *func, c onst char *buf, ...);
extern void mowgli_log_set_cb(mowgli_log_cb_t callback); extern void mowgli_log_set_cb(mowgli_log_cb_t callback);
 End of changes. 1 change blocks. 
0 lines changed or deleted 4 lines changed or added


 mowgli_patricia.h   mowgli_patricia.h 
skipping to change at line 133 skipping to change at line 133
/* /*
* mowgli_patricia_find() returns data from a dtree for key 'key'. * mowgli_patricia_find() returns data from a dtree for key 'key'.
*/ */
extern void *mowgli_patricia_retrieve(mowgli_patricia_t *dtree, const char *key); extern void *mowgli_patricia_retrieve(mowgli_patricia_t *dtree, const char *key);
/* /*
* mowgli_patricia_delete() deletes a key->value entry from the patricia tr ee. * mowgli_patricia_delete() deletes a key->value entry from the patricia tr ee.
*/ */
extern void *mowgli_patricia_delete(mowgli_patricia_t *dtree, const char *k ey); extern void *mowgli_patricia_delete(mowgli_patricia_t *dtree, const char *k ey);
unsigned int mowgli_patricia_size(mowgli_patricia_t *dict);
void mowgli_patricia_stats(mowgli_patricia_t *dict, void (*cb)(const char * line, void *privdata), void *privdata); void mowgli_patricia_stats(mowgli_patricia_t *dict, void (*cb)(const char * line, void *privdata), void *privdata);
#endif #endif
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 mowgli_stdinc.h   mowgli_stdinc.h 
skipping to change at line 50 skipping to change at line 50
# include <netdb.h> # include <netdb.h>
# include <netinet/in.h> # include <netinet/in.h>
# include <unistd.h> # include <unistd.h>
# include <grp.h> # include <grp.h>
# include <sys/time.h> # include <sys/time.h>
# include <sys/wait.h> # include <sys/wait.h>
# include <sys/resource.h> # include <sys/resource.h>
# include <sys/socket.h> # include <sys/socket.h>
# include <fcntl.h> # include <fcntl.h>
# include <arpa/inet.h> # include <arpa/inet.h>
# include <libgen.h>
# include <dirent.h>
#else #else
# include <windows.h> # include <windows.h>
# include <winsock.h> # include <winsock.h>
# include <sys/timeb.h> # include <sys/timeb.h>
# include <direct.h> # include <direct.h>
# include <io.h> # include <io.h>
# include <fcntl.h> # include <fcntl.h>
# include "win32_support.h"
#endif #endif
#include <sys/types.h> #include <sys/types.h>
#ifndef _WIN32 #ifdef _MSC_VER
#include <libgen.h> # pragma warning (disable: 4996)
#endif #endif
#include <dirent.h>
#ifdef FALSE #ifdef FALSE
# undef FALSE # undef FALSE
#endif #endif
#ifdef TRUE #ifdef TRUE
# undef TRUE # undef TRUE
#endif #endif
typedef enum { FALSE, TRUE } mowgli_boolean_t; typedef enum { FALSE, TRUE } mowgli_boolean_t;
 End of changes. 4 change blocks. 
3 lines changed or deleted 5 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/