YoushouldhavereceivedcopiesoftheGNUGeneralPublicLicenseandthe GNULesserGeneralPublicLicensealongwiththeGNUMPLibrary.Ifnot,
see https://www.gnu.org/licenses/. */
#include <stdarg.h> #include <stdio.h>
#include"gmp-impl.h"
int
gmp_sscanf (constchar *s, constchar *fmt, ...)
{
va_list ap; int ret;
va_start (ap, fmt);
#if SSCANF_WRITABLE_INPUT /* let gmp_vsscanf handle the copying */
ret = gmp_vsscanf (s, fmt, ap); #else
ret = __gmp_doscan (&__gmp_sscanf_funs, (void *) &s, fmt, ap); #endif
va_end (ap); return ret;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.