| 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 | |
|