2013-12-09 22:04:24 +00:00
|
|
|
//
|
|
|
|
// scanf.h
|
|
|
|
// test
|
|
|
|
//
|
|
|
|
// Created by crinq on 05.12.13.
|
|
|
|
// Copyright (c) 2013 Rene Hopf. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2015-04-04 13:28:01 +00:00
|
|
|
#pragma once
|
2013-12-09 22:04:24 +00:00
|
|
|
|
2014-09-17 21:21:15 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2014-09-17 00:45:19 +00:00
|
|
|
int sscanf_(const char* buf, const char *format, ...);
|
2014-09-17 21:21:15 +00:00
|
|
|
int vfsscanf_(const char *buf, const char *format, va_list arg);
|
2014-09-17 22:45:35 +00:00
|
|
|
int isDecDigit(char c);
|