#include <ctype.h>
#include <stdarg.h>
#include <stdio.h>
#include "common/scan.h"
Go to the source code of this file.
◆ _SCAN_GET
Value: ({ \
const char** str = (const char**)(ctx)->data; \
char c = **str; \
if (c != '\0') \
{ \
(*str)++; \
} \
c ==
'\0' ?
EOF : (
unsigned char)c; \
})
Definition at line 5 of file vsscanf.c.
◆ _SCAN_UNGET
| #define _SCAN_UNGET |
( |
|
ctx, |
|
|
|
c |
|
) |
| |
Value: ({ \
const char** str = (const char**)(ctx)->data; \
{ \
(*str)--; \
} \
})
Definition at line 16 of file vsscanf.c.
◆ vsscanf()