Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1627 serge 1
/*	strcmp()					Author: Kees J. Bot */
2
/*								1 Jan 1994 */
3
 
4
/* int strcmp(const char *s1, const char *s2) */
5
/*	Compare two strings. */
6
/* */
7
#include "asm.h"
8
 
9
ENTRY(strcmp)
10
	movl	$-1, %ecx	/* Unlimited length */
11
	jmp	_C_LABEL(_strncmp) /* Common code */