summaryrefslogtreecommitdiffstats
path: root/firmware/common
AgeCommit message (Expand)AuthorFilesLines
2002-09-16added memcmp function to make rockbox compilable with latest gcc versions wit...Felix Arends1-0/+113
2002-09-13undef MAX_PATH before defining it makes it play the simulator game betterDaniel Stenberg1-0/+1
2002-08-24Make close() check for a valid fd and set errno accordingly.Heikki Hannikainen1-0/+8
2002-08-23bad bad bad snprintf() overflow the buffer if the string passed in with aDaniel Stenberg1-2/+2
2002-08-22when we want to open a file, we want the exact specified file name, notDaniel Stenberg1-3/+1
2002-08-15Now doesn't truncate the lenght when comparing path componentsLinus Nielsen Feltzing1-2/+1
2002-08-11First version of loadable fonts patch by Alex GitelmanBjörn Stenberg1-0/+1
2002-08-05added weirdo extra protos for the mingw cross-compile buildDaniel Stenberg1-1/+11
2002-08-04use our own prototypes for open, read, close and lseek if we compileDaniel Stenberg1-4/+4
2002-08-02just defensivelt check for defined defines before we define themDaniel Stenberg1-0/+6
2002-08-02debreakageDaniel Stenberg1-2/+7
2002-08-02ming compile fixes by Bill NapierDaniel Stenberg2-3/+3
2002-08-01Moved to internal RAMLinus Nielsen Feltzing2-0/+12
2002-07-25The ctype array was too short. Found by Magnus Holmgren, thanks.Linus Nielsen Feltzing1-1/+2
2002-07-18Use most significant bits instead (gives better random)Björn Stenberg1-1/+1
2002-07-18Vastly improved, now working, random! :)Björn Stenberg1-8/+12
2002-07-17New vastly improved random algorithm: Mersenne TwisterBjörn Stenberg1-0/+153
2002-07-16Allow LBA-less partitionsBjörn Stenberg1-1/+2
2002-07-15Some more buffer length fixingLinus Nielsen Feltzing2-2/+3
2002-07-15Added searching for FAT32 partitionBjörn Stenberg1-0/+2
2002-07-05Added MAX_PATHLinus Nielsen Feltzing1-0/+2
2002-06-26Added id3 tracknum (Yusef Napora)Björn Stenberg2-0/+56
2002-06-26lseek: Adjust cacheoffset if cache is usedBjörn Stenberg1-0/+3
2002-06-241 byte reads past a sector boundary failedLinus Nielsen Feltzing1-1/+1
2002-06-19lseek() bug: It would claim cached sector even if that was not the caseBjörn Stenberg1-1/+1
2002-06-19make the array 257 bytesDaniel Stenberg1-1/+1
2002-06-19strcat()Daniel Stenberg1-0/+12
2002-06-18Filenames are case insensitive in Fat32Björn Stenberg2-2/+2
2002-06-18case insensitive string comparisonsDaniel Stenberg1-0/+28
2002-06-17we need ctypeDaniel Stenberg1-0/+21
2002-06-17added vsnprintfDaniel Stenberg1-0/+2
2002-06-12fixed intptr_t to int, thanks to gregFelix Arends1-1/+1
2002-06-07Added check for open-for-writeLinus Nielsen Feltzing1-0/+7
2002-06-07Killed a few warningsLinus Nielsen Feltzing1-6/+6
2002-06-07Killed a few warningsLinus Nielsen Feltzing2-2/+2
2002-05-31Had to include <stddef.h> so that size_t is defined.Felix Arends1-0/+2
2002-05-30Added code from libc instead of requiring newlibBjörn Stenberg12-0/+1284
2002-05-30Partition table is no longer globalBjörn Stenberg2-7/+7
2002-05-30Changed the size argument to be a size_t type, to make the prototype lookDaniel Stenberg1-2/+2
2002-05-29define functions in sprintf.cFelix Arends1-0/+25
2002-05-27Bugfix: SEEK_END takes negative positionBjörn Stenberg1-3/+2
2002-05-27Fixed possible race conditionBjörn Stenberg1-1/+4
2002-05-27Now supports multiple concurrent opendir()Björn Stenberg2-20/+37
2002-05-24strtok:ing a copy of the parameter insteadBjörn Stenberg1-3/+7
2002-05-16Removed debug outputLinus Nielsen Feltzing1-3/+0
2002-05-13Changing to C99 'bool' typeBjörn Stenberg2-7/+7
2002-05-08Added commentBjörn Stenberg1-0/+9
2002-05-08Added lseek()Björn Stenberg1-4/+68
2002-05-08Fixed read() for sub-sector requestsBjörn Stenberg1-38/+70
2002-05-07Added open/close/read. read() only works on whole sectors right now.Björn Stenberg4-3/+176