summaryrefslogtreecommitdiff
path: root/memdump/string.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
commit223f5298620a3b3be9fbd206e2a3fbb388487da0 (patch)
tree286635488927e801c646d80e21d6a194261ed75b /memdump/string.h
parent57556d8f612128679464667ce124ddc611795db2 (diff)
parenta81fb89a445ae0dca286c861d8d51f705533df0d (diff)
downloadsyslinux-3.60-pre2.tar.gz
Merge commit 'syslinux-3.52' into gpxe-supportsyslinux-3.60-pre2
Diffstat (limited to 'memdump/string.h')
-rw-r--r--memdump/string.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/memdump/string.h b/memdump/string.h
new file mode 100644
index 00000000..44f77dac
--- /dev/null
+++ b/memdump/string.h
@@ -0,0 +1,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 */