Functions HI-TECH C SSCANF

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