-

Difference between revisions of "Functions HI-TECH C SSCANF"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>SSCANF</strong> ==SYNOPSIS== #include <stdio.h> int sscanf(char * buf, char * fmt, ...); int vsscanf(char * buf, char * fmt, va_list ap); ==DESCRIPTION== <str...")
 
(No difference)

Latest revision as of 23:54, 31 July 2017

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