memutil.h 164 B

12345678910
  1. #ifndef _MEMUTIL_H
  2. #define _MEMUTIL_H
  3. #undef strdup
  4. #undef str_redup
  5. void str_redup(char **, const char *);
  6. char *strdup(const char *);
  7. #endif /* !_MEMUTIL_H */