aboutsummaryrefslogblamecommitdiffstats
path: root/strends.c
blob: 7be8714c2a77f9b18650f1b2400fb895f7fce710 (plain) (tree)
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));
}