/* sscanf.h: Replacement of sscanf for TI-Nspire * * Copyright (C) 2013 by Yogeshwar Velingker, under the GNU General Public * License. No warranty. See COPYING for details. */ #ifdef _TINSPIRE #ifndef _sscanf_h_ #define _sscanf_h_ /* Simple sscanf for the purpose of this program. */ extern int simplesscanf(const char *str, const char *format, ...); #endif #endif