string.h is not used

This commit is contained in:
Neil 2021-08-29 12:58:17 -07:00
parent 6eafdf7755
commit 29fe592108
2 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,6 @@
to this memory may become stale. @param{MIN_ARRAY_CAPACITY} Defaults to 3. */
#include <stdlib.h> /* size_t realloc free */
#include <string.h> /* memmove strcmp memcpy */
#include <errno.h> /* errno */
#include <assert.h> /* assert */

View File

@ -5,6 +5,7 @@
#include <stdlib.h> /* size_t EXIT_ strtol */
#include <stdio.h> /* FILE fopen fclose fread [f]printf ferror perror */
#include <string.h> /* strpbrk */
#include <errno.h> /* errno */
#include <ctype.h> /* isdigit */
#include <limits.h> /* LONG_ INT_ _MIN _MAX */