Chameleon

Chameleon Svn Source Tree

Root/branches/meklort/i386/modules/klibc/sscanf.c

Source at commit 655 created 13 years 4 months ago.
By meklort, Modules update. removed hardcoding for dyld_stub_bunder in modules.c Added a subset of klibc for a more complete c library implimentation. Added a subset of uclibc++ for an initial c++ implimentation. Note: cout / cin / file io has been disabled. Also note that exceptions and rtti is disabled. Modified the helow world code foa small c++ test.
1/*
2 * sscanf()
3 */
4
5#include "libsaio.h"
6extern int vsscanf(const char *buffer, const char *format, va_list ap);
7int sscanf(const char *str, const char *format, ...)
8{
9va_list ap;
10int rv;
11
12va_start(ap, format);
13rv = vsscanf(str, format, ap);
14va_end(ap);
15
16return rv;
17}
18

Archive Download this file

Revision: 655