File:  [DVB] / dietlibc / sparc / strchr.S
Revision 1.2: download - view: text, annotated - select for diffs
Sat Apr 19 15:07:35 2014 UTC (10 years, 1 month ago) by leitner
Branches: MAIN
CVS tags: HEAD
Massive ARM changes from Enrico Scholz

/*
    Copyright (C) 2003 Thomas M. Ogrisegg <tom@hi-tek.fnord.at>

    This is free software. You can redistribute and
    modify it under the terms of the GNU General Public
    Public License.

    strchr.S
      sparc assembler implementation of strchr(3)
*/

.text
.globl strchr
.weak index
index:
strchr:
	ldub [%o0], %o2
	cmp %o2, %o1
	be .Lfound
	tst %o2
	bne,a strchr
	inc %o0
	clr %o0
.Lfound:
	retl
	nop

LinuxTV legacy CVS <linuxtv.org/cvs>