gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / libiberty / strncmp.c
CommitLineData
eb383413
L
1/* strncmp -- compare two strings, stop after n bytes.
2 This function is in the public domain. */
3
39423523
DD
4/*
5
d4d868a2
RW
6@deftypefn Supplemental int strncmp (const char *@var{s1}, @
7 const char *@var{s2}, size_t @var{n})
39423523
DD
8
9Compares the first @var{n} bytes of two strings, returning a value as
10@code{strcmp}.
11
12@end deftypefn
13
14*/
15
eb383413 16#include <ansidecl.h>
eb383413 17#include <stddef.h>
eb383413
L
18
19int
49b1fae4 20strncmp(const char *s1, const char *s2, register size_t n)
eb383413
L
21{
22 register unsigned char u1, u2;
23
24 while (n-- > 0)
25 {
26 u1 = (unsigned char) *s1++;
27 u2 = (unsigned char) *s2++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
31 return 0;
32 }
33 return 0;
34}
This page took 0.807851 seconds and 4 git commands to generate.