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/] [strncpy.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__)) char * strncpy(char *s1, const char *s2, size_t n) { char *dest = s1; #ifdef __OPTIMIZE__ if (inside_main) abort(); #endif for (; *s2 && n; n--) *s1++ = *s2++; while (n--) *s1++ = 0; return dest; }
Go to most recent revision | Compare with Previous | Blame | View Log