URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [lib/] [strncmp.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern int inside_main; typedef __SIZE_TYPE__ size_t; __attribute__ ((__noinline__)) int strncmp(const char *s1, const char *s2, size_t n) { const unsigned char *u1 = (const unsigned char *)s1; const unsigned char *u2 = (const unsigned char *)s2; unsigned char c1, c2; #ifdef __OPTIMIZE__ if (inside_main) abort(); #endif while (n > 0) { c1 = *u1++, c2 = *u2++; if (c1 == '\0' || c1 != c2) return c1 - c2; n--; } return c1 - c2; }
Go to most recent revision | Compare with Previous | Blame | View Log