[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Lost] [Patch] fdisk



Am Sonntag, 17. Februar 2008 21.52:52 schrieb Kevin Wolf:
> > +/* This function takes to characters and converts them into a 8bit
> > integer +   For example: c1 = F and c2 = F => return value = 255 */
> > +unsigned char hex2uint8(char c1, char c2)
>
> Wir haben ein sscanf.

Jo aber die Implementation davon ist etwas speziell, von daher passt das 
schon. ;-)
Hier ein kleiner Auszug aus src/modules/lib/stdlibc/sscanf.c:

#ifndef CONFIG_LIBC_NO_STUBS
int sscanf(const char* str, const char* format, ...)
{
    // FIXME
    puts("TODO in LOST-Libc: sscanf!");
    return 0;
}
#endif