1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 15:54:59 +00:00
cc65/libsrc/common
uz 5967b4845e Let vsprintf call vsnprintf to save code.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4247 b7a2c559-68d2-44c3-8de9-860c34a00d81
2009-09-27 12:18:06 +00:00
..
_afailed.c
_cwd.s
_environ.s
_fdesc.s
_file.h
_file.s
_fopen.s
_heap.s
_heapadd.s
_heapblocksize.s
_heapmaxavail.s
_heapmemavail.s
_hextab.c
_oserror.s
_poserror.c
_printf.h The _printf routine does not return anything. 2009-09-26 19:20:51 +00:00
_printf.s Removed an unused import. 2009-02-10 22:08:43 +00:00
_scanf.c
_scanf.h
_scanf.inc
_seterrno.s
_swap.s
_sys.s
abort.c
abs.s
asctime.c
atexit.s
atoi.s Shrink atoi by using negeax instead of inlined code. 2009-09-15 21:25:44 +00:00
bsearch.c
calloc.s
chdir.s
copydata.s
creat.s Added creat() 2003-06-12 09:10:50 +00:00
ctime.s
divt.s
errno.s
errormsg.c New error code ERANGE 2003-08-12 13:48:45 +00:00
fclose.s
fdopen.c
fgetc.c
fgetpos.c
fgets.c Squeezed out a few bytes 2004-05-13 21:17:58 +00:00
fmisc.s
fopen.s
fprintf.s
fputc.c
fputs.c
fread.s
free.s Added a comment 2005-01-05 21:05:35 +00:00
freopen.c
fscanf.s
fseek.c
fsetpos.c
ftell.c
fwrite.s
getchar.c
getcpu.s
getcwd.s
getenv.s
gets.c
gmtime.c
isalnum.s
isalpha.s
isblank.s
iscntrl.s
isdigit.s
isgraph.s
islower.s
isprint.s
ispunct.s
isspace.s
isupper.s
isxdigit.s
itoa.s
labs.s
locale.c
localtime.c Cosmetic changes 2002-11-13 08:56:45 +00:00
longjmp.s Replace a return value of 0 by 1 as expected by the C standard. 2000-07-22 18:26:31 +00:00
ltoa.s
Makefile Added an untested implementation of snprintf. 2009-09-27 12:11:05 +00:00
malloc.s Slice blocks even if the remainder is just sizeof(freeblock) bytes in size. 2005-01-05 20:06:13 +00:00
maperrno.s Renamed setoserror to seterrnofromoserror to avoid clashes. 2008-04-15 06:55:35 +00:00
memchr.s
memcmp.s
memcpy.s Improved memset/memcpy/memmove functions by Christian Krueger. 2009-09-20 14:32:25 +00:00
memmove.s Improved memset/memcpy/memmove functions by Christian Krueger. 2009-09-20 14:32:25 +00:00
memset.s Improved memset/memcpy/memmove functions by Christian Krueger. 2009-09-20 14:32:25 +00:00
mkdir.s New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
mktime.c
modfree.s Changed function prototype 2002-06-21 16:26:15 +00:00
modload.s
oserrcheck.s
perror.c
pmemalign.c
printf.s
putchar.s
putenv.s
puts.c
qsort.c
raise.s
rand.s Change initial seed to 1 2002-11-05 13:19:43 +00:00
realloc.c
remove.s Moved reusable parts of remove into oserrcheck. 2003-08-12 13:06:43 +00:00
rename.s
rewind.c Fixed the return code of fgetpos and ftell. 2003-11-06 18:04:07 +00:00
rmdir.s
scanf.s
searchenv.s
setjmp.s
signal.s
sigtable.s
sleep.c sleep.c doesn't compile on platforms without a clock function 2003-06-12 18:17:46 +00:00
snprintf.s Added an untested implementation of snprintf. 2009-09-27 12:11:05 +00:00
sprintf.s
sscanf.s
strcat.s
strchr.s
strcmp.s
strcoll.s
strcpy.s
strcspn.s
strdup.s
strerror.s
strftime.c
stricmp.s
strlen.s
strlower.s
strncat.s
strncmp.s
strncpy.s
strnicmp.s
stroserr.s
strpbrk.s
strrchr.s This commit was generated by cvs2svn to compensate for changes in r2, 2000-05-28 13:40:48 +00:00
strspn.s
strstr.s
strtoimax.s New strtoimax and strtoumax standard functions as aliases for strtol/strtoul. 2009-09-17 18:37:42 +00:00
strtok.c
strtol.c Added an implementation of strtol (stdlib.h). 2009-09-15 20:56:08 +00:00
strtoul.c Added a (currently untested) strtoul implementation. strtol and strtoul should 2009-09-15 21:45:25 +00:00
strtoumax.s New strtoimax and strtoumax standard functions as aliases for strtol/strtoul. 2009-09-17 18:37:42 +00:00
strupper.s
strxfrm.c Made strxfrm fastcall, added docs. 2008-08-27 20:02:48 +00:00
system.c Make system() fastcall like most other library functions. 2009-09-15 21:01:20 +00:00
time.s
timezone.c
tolower.s
toupper.s Removed __cdiff. Since the assembler does character set translation for 2002-11-22 00:53:46 +00:00
uname.s New uname function 2003-08-12 14:24:34 +00:00
ungetc.s
unlink.s Added unlink() 2003-06-12 08:43:57 +00:00
utscopy.s
vfprintf.s
vfscanf.s
vprintf.s Rewrote vprintf in assembler and made it __fastcall__ 2003-06-02 16:08:26 +00:00
vscanf.s
vsnprintf.s Added an (only roughly tested) implementation of vsnprintf 2009-09-27 12:04:36 +00:00
vsprintf.s Let vsprintf call vsnprintf to save code. 2009-09-27 12:18:06 +00:00
vsscanf.s
zerobss.s