aboutsummaryrefslogtreecommitdiffstats
path: root/memends.c
blob: 1dde6365fc2142d26d35055cd2469bbfba6a2c6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"


int
libsimple_memends(const void *s_, size_t n, const void *t_, size_t m)
{
	const char *s = s_, *t = t_;
	if (n < m)
		return 0;
	while (n--, m--)
		if (s[n] != t[m])
			return 0;
	return 1;
}