You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
247 B

  1. /* strdup() replacement (from stdwin, if you must know) */
  2. #include "pgenheaders.h"
  3. char *
  4. strdup(const char *str)
  5. {
  6. if (str != NULL) {
  7. char *copy = malloc(strlen(str) + 1);
  8. if (copy != NULL)
  9. return strcpy(copy, str);
  10. }
  11. return NULL;
  12. }