]> git.cameronkatri.com Git - mandoc.git/blobdiff - xstd.c
Added more character-escape regressions.
[mandoc.git] / xstd.c
diff --git a/xstd.c b/xstd.c
index 163a0f27169468e428b1660c4c6de04f52d3ab1e..6442da41b4fd714d7c645b0abc880af5ea4891f8 100644 (file)
--- a/xstd.c
+++ b/xstd.c
@@ -1,4 +1,4 @@
-/* $Id: xstd.c,v 1.4 2009/01/20 13:44:05 kristaps Exp $ */
+/* $Id: xstd.c,v 1.5 2009/01/20 22:55:46 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -33,6 +33,14 @@ extern       size_t           strlcat(char *, const char *, size_t);
 extern size_t           strlcpy(char *, const char *, size_t);
 #endif
 
+
+int
+xstrncmp(const char *p1, const char *p2, size_t sz)
+{
+
+       return(0 == strncmp(p1, p2, sz));
+}
+
 int
 xstrcmp(const char *p1, const char *p2)
 {