// Copyright 2022 Darwin Schuppan // SPDX license identifier: MIT #ifndef __DS_STRING_H__ #define __DS_STRING_H__ #ifndef strdup /* we may want to replace strdup for testing */ char *strdup(const char *s); #endif #endif