ReactOS 0.4.16-dev-942-g91fadeb
strncmp.c File Reference
#include <string.h>
Include dependency graph for strncmp.c:

Go to the source code of this file.

Functions

int __cdecl strncmp (const char *first, const char *last, size_t count)
 

Function Documentation

◆ strncmp()

int __cdecl strncmp ( const char first,
const char last,
size_t  count 
)

Definition at line 40 of file strncmp.c.

46{
47 size_t x = 0;
48
49 if (!count)
50 {
51 return 0;
52 }
53
54 /*
55 * This explicit guard needed to deal correctly with boundary
56 * cases: strings shorter than 4 bytes and strings longer than
57 * UINT_MAX-4 bytes .
58 */
59 if( count >= 4 )
60 {
61 /* unroll by four */
62 for (; x < count-4; x+=4)
63 {
64 first+=4;
65 last +=4;
66
67 if (*(first-4) == 0 || *(first-4) != *(last-4))
68 {
69 return(*(unsigned char *)(first-4) - *(unsigned char *)(last-4));
70 }
71
72 if (*(first-3) == 0 || *(first-3) != *(last-3))
73 {
74 return(*(unsigned char *)(first-3) - *(unsigned char *)(last-3));
75 }
76
77 if (*(first-2) == 0 || *(first-2) != *(last-2))
78 {
79 return(*(unsigned char *)(first-2) - *(unsigned char *)(last-2));
80 }
81
82 if (*(first-1) == 0 || *(first-1) != *(last-1))
83 {
84 return(*(unsigned char *)(first-1) - *(unsigned char *)(last-1));
85 }
86 }
87 }
88
89 /* residual loop */
90 for (; x < count; x++)
91 {
92 if (*first == 0 || *first != *last)
93 {
94 return(*(unsigned char *)first - *(unsigned char *)last);
95 }
96 first+=1;
97 last+=1;
98 }
99
100 return 0;
101}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLuint GLuint GLsizei count
Definition: gl.h:1545
const GLint * first
Definition: glext.h:5794
static UINT UINT last
Definition: font.c:45