Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/sscanf.c

Source at commit 1308 created 12 years 8 months ago.
By meklort, Add a few placeholders for file io
1/*
2 * sscanf()
3 */
4
5#include <stdio.h>
6#include <stdarg.h>
7
8int sscanf(const char *str, const char *format, ...)
9{
10va_list ap;
11int rv;
12
13va_start(ap, format);
14rv = vsscanf(str, format, ap);
15va_end(ap);
16
17return rv;
18}
19

Archive Download this file

Revision: 1308