-

Functions HI-TECH C SSCANF

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search

SSCANF

SYNOPSIS

#include  <stdio.h>

int sscanf(char * buf, char * fmt, ...);
int vsscanf(char * buf, char * fmt, va_list ap);


DESCRIPTION

Sscanf() operates in a similar manner to scanf(), except that instead of the conversions being taken from stdin, they are taken from the string at buf.

SEE ALSO

scanf, fscanf, sprintf