Name Last Update
..
CVS Loading commit data...
GNUmakefile Loading commit data...
_free.c Loading commit data...
_malloc.c Loading commit data...
_malloc.h Loading commit data...
_malloc_memcheck.c Loading commit data...
_malloc_memdsp.c Loading commit data...
abs.c Loading commit data...
acos.c Loading commit data...
acosf.c Loading commit data...
asin.c Loading commit data...
asinf.c Loading commit data...
atan.c Loading commit data...
atan2.c Loading commit data...
atan2f.c Loading commit data...
atanf.c Loading commit data...
atof.c Loading commit data...
atoi.c Loading commit data...
atol.c Loading commit data...
bsearch.c Loading commit data...
calloc.c Loading commit data...
ceil.s Loading commit data...
ceilf.s Loading commit data...
cos.c Loading commit data...
cosf.c Loading commit data...
cosh.c Loading commit data...
coshf.c Loading commit data...
ctype.c Loading commit data...
ctype.h Loading commit data...
div.c Loading commit data...
exp.c Loading commit data...
expf.c Loading commit data...
fabs.s Loading commit data...
fabsf.s Loading commit data...
floor.s Loading commit data...
floorf.s Loading commit data...
fmod.c Loading commit data...
fmodf.c Loading commit data...
free.c Loading commit data...
frexp.c Loading commit data...
frexpf.c Loading commit data...
hypot.c Loading commit data...
hypotf.c Loading commit data...
initheap.c Loading commit data...
labs.c Loading commit data...
ldexp.c Loading commit data...
ldexpf.c Loading commit data...
ldiv.c Loading commit data...
log.c Loading commit data...
log10.c Loading commit data...
log10f.c Loading commit data...
logf.c Loading commit data...
makefile Loading commit data...
malloc.c Loading commit data...
malloc.h Loading commit data...
malloc_memcheck.c Loading commit data...
malloc_memdsp.c Loading commit data...
math.h Loading commit data...
mathdef.h Loading commit data...
memalign.c Loading commit data...
memchr.c Loading commit data...
memcmp.c Loading commit data...
memcpy.c Loading commit data...
memmove.c Loading commit data...
memset.c Loading commit data...
modf.c Loading commit data...
modff.c Loading commit data...
mt_calloc.c Loading commit data...
mt_free.c Loading commit data...
mt_malloc.c Loading commit data...
mt_malloc_memcheck.c Loading commit data...
mt_malloc_memdsp.c Loading commit data...
mt_memalign.c Loading commit data...
mt_qsort.c Loading commit data...
mt_realloc.c Loading commit data...
pow.c Loading commit data...
powf.c Loading commit data...
qsort.c Loading commit data...
readme.txt Loading commit data...
realloc.c Loading commit data...
setjmp.h Loading commit data...
setjmp.s Loading commit data...
sin.c Loading commit data...
sinf.c Loading commit data...
sinh.c Loading commit data...
sinhf.c Loading commit data...
sqrt.s Loading commit data...
sqrtf.s Loading commit data...
srand.c Loading commit data...
stdlib.h Loading commit data...
strcat.c Loading commit data...
strchr.c Loading commit data...
strcmp.c Loading commit data...
strcpy.c Loading commit data...
strcspn.c Loading commit data...
string.h Loading commit data...
strlen.c Loading commit data...
strlwr.c Loading commit data...
strncat.c Loading commit data...
strncmp.c Loading commit data...
strncpy.c Loading commit data...
strpbrk.c Loading commit data...
strrchr.c Loading commit data...
strspn.c Loading commit data...
strstr.c Loading commit data...
strtod.c Loading commit data...
strtok.c Loading commit data...
strtol.c Loading commit data...
strtoul.c Loading commit data...
tan.c Loading commit data...
tanf.c Loading commit data...
tanh.c Loading commit data...
tanhf.c Loading commit data...
関数とソースの対応表


1.C標準関数

	memchr			memchr.c
	memmove			memmove.c
	memcmp			memcmp.c
	memset			memset.c
	_nmemcpy		memcpy.c
	_nstrchr		strchr.c
	strcpy			strcpy.c
	strncat			strncat.c
	strncpy			strncpy.c
	strrchr			strrchr.c
	strcmp			strcmp.c
	strcspn			strcspn.c
	_nstrlen		strlen.c
	strncmp			strncmp.c
	strpbrk			strpbrk.c
	strspn			strspn.c
	strcat			strcat.c
	strstr			strstr.c
	strtok			strtok.c
	longjmp			setjmp.s
	setjmp			setjmp.s
	labs			labs.c
	abs			abs.c
	srand			srand.c
	rand			srand.c
	atof			atof.c
	atoi			atoi.c
	atol			atol.c
	strtol			strtol.c
	strtod			strtod.c
	strtoul			strtoul.c
	_nldiv			ldiv.c
	div			div.c
	qsort			qsort.c
	mt_qsort		mt_qsort.c
	bsearch			bsearch.c


2.数値演算ライブラリ

	sin			sin.c
	_nsinf			sinf.c
	cos			cos.c
	_ncosf			cosf.c
	tan			tan.c
	tanf			tanf.c
	acos			acos.c
	acosf			acosf.c
	asin			asin.c
	asinf			asinf.c
	atan			atan.c
	atanf			atanf.c
	atan2			atan2.c
	atan2f			atan2f.c
	sinh			sinh.c
	sinhf			sinhf.c
	cosh			cosh.c
	coshf			coshf.c
	tanh			tanh.c
	tanhf			tanhf.c
	exp			exp.c
	expf			expf.c
	frexp			frexp.c
	frexpf			frexpf.c
	ldexp			ldexp.c
	ldexpf			ldexpf.c
	modf			modf.c
	modff			modff.c
	log			log.c
	logf			logf.c
	log10			log10.c
	log10f			log10f.c
	pow			pow.c
	powf			powf.c
	sqrt			sqrt.s
	_nsqrtf			sqrtf.s
	fabs			fabs.s
	fabsf			fabsf.s
	floor			floor.s
	floorf			floorf.s
	ceil			ceil.s
	ceilf			ceilf.s
	fmod			fmod.c
	fmodf			fmodf.c
	hypot			hypot.c
	hypotf			hypotf.c


3.メモリ割当てルーチン

	InitHeap		initheap.c
	malloc			malloc.c
	mt_malloc		mt_malloc.c
	free			free.c
	mt_free			mt_free.c
	realloc			realloc.c
	mt_realloc		mt_realloc.c
	calloc			calloc.c
	mt_calloc		mt_calloc.c
	memalign		memalign.c
	mt_memalign		mt_memalign.c
	malloc_memcheck		malloc_memcheck.c
	mt_malloc_memcheck	mt_malloc_memcheck.c
	malloc_memdsp		malloc_memdsp.c
	mt_malloc_memdsp	mt_malloc_memdsp.c