/* * File: bronx_utils.h * Author: dfeinsmith * * Created on September 17, 2007, 1:00 PM */ #ifndef _BRONX_UTILS_H #define _BRONX_UTILS_H #include "bronx.h" #ifdef __cplusplus extern "C" { #endif // UTILITY char *pstrreplace(apr_pool_t* mp, const char* str, const char* needle1, const char* needle2); char *strcleanup(apr_pool_t *tempmp, char *str); char *datetostring(apr_pool_t*, time_t time); // Helper function to convert time_t to string in iso format #ifdef __cplusplus } #endif #endif /* _BRONX_UTILS_H */