1
0
mirror of https://github.com/cc65/cc65.git synced 2024-11-19 06:31:31 +00:00
cc65/libsrc/common
ol.sc 7103aa04ae Added docs to set_irq / reset_irq.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5415 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-01-21 12:28:23 +00:00
..
_afailed.c
_cwd.s
_environ.s Added environment routines 2005-04-21 21:26:15 +00:00
_fdesc.s Use structs 2003-12-03 10:15:33 +00:00
_file.h
_file.s Added pushback char to struct FILE 2004-05-12 13:16:36 +00:00
_fopen.s
_heap.s Move initialization code into the init segment 2005-02-26 09:06:46 +00:00
_heapadd.s
_heapblocksize.s New used block structure for the heap 2005-01-05 21:05:11 +00:00
_heapmaxavail.s
_heapmemavail.s
_hextab.c
_oserror.s
_poserror.c Fixed comments. No code change. 2011-04-25 18:49:24 +00:00
_printf.h The _printf routine does not return anything. 2009-09-26 19:20:51 +00:00
_printf.s
_scanf.c Removed the prototype for _seterrno, since it is now provided in errno.h. 2010-06-03 21:25:17 +00:00
_scanf.h Scanf improvements by Greg King 2005-02-14 09:19:59 +00:00
_scanf.inc
_seterrno.s
_swap.s Fixed an error and improved the code 2004-11-30 18:47:25 +00:00
_sys.s
abort.c
abs.s Squeeze two cycles out of the abs() function 2003-10-10 17:59:00 +00:00
asctime.c
atexit.s Changed priorities of destructors so atexit will be called before open files 2011-01-28 10:55:03 +00:00
atoi.s
bsearch.c
calloc.s
cc65_idiv32by16r16.s Working on the division and multiplication routines. 2009-11-04 19:41:54 +00:00
cc65_imul16x16r32.s Working on the division and multiplication routines. 2009-11-04 19:41:54 +00:00
cc65_sincos.s
cc65_udiv32by16r16.s Working on the division and multiplication routines. 2009-11-04 19:41:54 +00:00
cc65_umul16x8r32.s Make the 8x32 unsigned multiplication routine C callable. 2011-07-10 14:52:35 +00:00
cc65_umul16x16r32.s
chdir.s Renamed oserrcheck to __mappederrno. Added an additional function named 2010-06-10 18:10:53 +00:00
copydata.s Sqeezed a few bytes out of the copydata function 2004-12-01 12:00:50 +00:00
creat.s
ctime.s
divt.s
errno.s Renamed oserrcheck to __mappederrno. Added an additional function named 2010-06-10 18:10:53 +00:00
errormsg.c Added messages for EBADF (new) and EUNKNOWN (missing). 2010-06-03 21:16:07 +00:00
fclose.s
fdopen.c
fgetc.c
fgetpos.c
fgets.c Call _seterrno instead of assigning to _errno to make the code shorter. 2010-06-03 20:21:23 +00:00
fmisc.s
fopen.s Use a subroutine to set errno to save some space. 2004-05-13 21:09:08 +00:00
fprintf.s
fputc.c
fputs.c
fread.s
free.s
freopen.c
fscanf.s Replaced fscanf by an assembler version 2004-11-28 18:11:17 +00:00
fseek.c
fsetpos.c Fixed the return code of fgetpos and ftell. 2003-11-06 18:04:07 +00:00
ftell.c Use _seterrno instead of assigning to _errno to make the code shorter. 2010-06-03 20:46:08 +00:00
fwrite.s Set errno if the stream is in error state. Small code size improvements. Fixed 2010-06-03 21:22:51 +00:00
getchar.c
getcpu.s
getcwd.s
getenv.s Added environment routines 2005-04-21 21:26:15 +00:00
getopt.c
gets.c Fixed the return code of fgetpos and ftell. 2003-11-06 18:04:07 +00:00
gmtime.c
interrupt.s
isalnum.s
isalpha.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
isblank.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
iscntrl.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
isdigit.s
isgraph.s
islower.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
isprint.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
ispunct.s
isspace.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
isupper.s
isxdigit.s Use constants for the bits in the _ctype array. 2001-09-08 14:00:41 +00:00
itoa.s
labs.s labs() is also imaxabs(). 2009-09-13 18:06:43 +00:00
locale.c
localtime.c
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 This commit was generated by cvs2svn to compensate for changes in r2, 2000-05-28 13:40:48 +00:00
Makefile Added wrapper for C level irq handling. 2012-01-19 00:24:13 +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
memchr.s
memcmp.s Rewrote memcmp. The old version was buggy, the new one is faster and 2000-09-15 17:23:19 +00:00
memcpy.s
memmove.s Improved memset/memcpy/memmove functions by Christian Krueger. 2009-09-20 14:32:25 +00:00
memset.s Slightly improved memset function by Christian Krüger. 2011-01-26 22:07:59 +00:00
mkdir.s
mktime.c
modfree.s Changed function prototype 2002-06-21 16:26:15 +00:00
modload.s Renamed O65_OS_CC65_MODULE -> O65_OS_CC65 in the headers. 2005-04-01 08:23:56 +00:00
perror.c
pmemalign.c
printf.s
putchar.s putchar didn't work 2005-12-20 22:58:16 +00:00
putenv.s No need to import __seterror, since this is done in errno.inc. 2010-06-03 21:33:55 +00:00
puts.c
qsort.c
raise.s
rand.s
realloc.c Changed the way, used blocks are managed 2004-12-19 23:09:38 +00:00
remove.s
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 This commit was generated by cvs2svn to compensate for changes in r2, 2000-05-28 13:40:48 +00:00
signal.s Call __seterrno instead of assigning to _errno and save a few bytes. 2010-06-03 21:26:52 +00:00
sigtable.s Add signal() and raise() 2003-03-14 00:02:58 +00:00
sleep.c
snprintf.s
sprintf.s
sscanf.s
strcat.s Small optimization 2003-05-05 17:05:22 +00:00
strchr.s
strcmp.s
strcoll.s
strcpy.s Another small optimization 2003-05-05 17:07:14 +00:00
strcspn.s This commit was generated by cvs2svn to compensate for changes in r2, 2000-05-28 13:40:48 +00:00
strdup.s
strerror.s Invalid error codes will set errno 2003-12-19 18:45:26 +00:00
strftime.c Changed names of the pragmas to be identical to the corresponding command line 2009-10-14 12:55:15 +00:00
stricmp.s Use named constants from ctype.inc instead of hard coded numeric values. 2009-02-10 22:11:56 +00:00
strlen.s
strlower.s Use named constants from ctype.inc instead of hard coded numeric values. 2009-02-10 22:11:56 +00:00
strncat.s
strncmp.s
strncpy.s Speed optimization 2003-08-18 11:25:31 +00:00
strnicmp.s
stroserr.s
strpbrk.s
strrchr.s
strspn.s This commit was generated by cvs2svn to compensate for changes in r2, 2000-05-28 13:40:48 +00:00
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
strtoul.c Use _seterrno instead of assigning to _errno. 2010-06-03 21:37:27 +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 Use named constants from ctype.inc instead of hard coded numeric values. 2009-02-10 22:11:56 +00:00
strxfrm.c
system.c
time.s
timezone.c
tolower.s Removed __cdiff. Since the assembler does character set translation for 2002-11-22 00:53:46 +00:00
toupper.s
uname.s
ungetc.s
unlink.s Added unlink() 2003-06-12 08:43:57 +00:00
utscopy.s
vfprintf.s
vfscanf.s Scanf improvements by Greg King 2005-02-14 09:19:59 +00:00
vprintf.s Rewrote vprintf in assembler and made it __fastcall__ 2003-06-02 16:08:26 +00:00
vscanf.s Replace vscanf by an assembler version 2004-11-27 18:23:24 +00:00
vsnprintf.s Fixed more bugs, shortened the code where possible. 2009-09-28 18:39:55 +00:00
vsprintf.s Fixed more bugs, shortened the code where possible. 2009-09-28 18:39:55 +00:00
vsscanf.s
zerobss.s