ref: f9f3bb77618267d94cc2e5102c35e9d036cfcde0
dir: /include/extern/strl.h/
/* * This file is part of RGBDS. * * Copyright (c) 2015-2018, RGBDS contributors. * * SPDX-License-Identifier: MIT */ #ifndef EXTERN_STRL_H #define EXTERN_STRL_H #ifdef STRL_IN_LIBC #include <string.h> #else /* STRL_IN_LIBC */ #define strlcpy rgbds_strlcpy size_t strlcpy(char *dst, const char *src, size_t dsize); #endif /* STRL_IN_LIBC */ #endif /* EXTERN_STRL_H */