summaryrefslogtreecommitdiff
path: root/memdump/string.h
blob: 44f77dac606d157b040af602ee270b8457d27bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * string.h
 */

#ifndef _STRING_H
#define _STRING_H

/* Standard routines */
#define memcpy(a,b,c)	__builtin_memcpy(a,b,c)
#define memset(a,b,c)	__builtin_memset(a,b,c)
#define strcpy(a,b)	__builtin_strcpy(a,b)
#define strlen(a)	__builtin_strlen(a)

/* This only returns true or false */
static inline int memcmp(const void *__m1, const void *__m2, unsigned int __n)
{
  _Bool rv;
  asm volatile("cld ; repe ; cmpsb ; setne %0"
	       : "=abd" (rv), "+D" (__m1), "+S" (__m2), "+c" (__n));
  return rv;
}

#endif /* _STRING_H */