67a3957 ^
1 2 3 4 5 6 7 8 9
/* See LICENSE file for copyright and license details. */ #include "libsimple.h" int libsimple_strends(const char *s, const char *t) { return memends(s, strlen(s), t, strlen(t)); }