Files
RedBear-OS/recipes/tests/wchar/wscanf.c
T
vasilito b9874d0941 feat: USB storage read/write proof + full Red Bear OS tree sync
Add redbear-usb-storage-check in-guest binary that validates USB mass
storage read and write I/O: discovers /scheme/disk/ devices, writes a
test pattern to sector 2048, reads it back, verifies match, restores
original content. Updates test-usb-storage-qemu.sh with write-proof
verification step.

Includes all accumulated Red Bear OS work: kernel patches, relibc
patches, driver infrastructure, DRM/GPU, KDE recipes, firmware,
validation tooling, build system hardening, and documentation.
2026-05-03 23:03:24 +01:00

103 lines
3.3 KiB
C

/* swscanf example */
#include <wchar.h>
#include <stdio.h>
// TODO: remove glibc?
#ifdef __GLIBC__
#include <stdarg.h>
#endif
#include "test_helpers.h"
struct params {
short sa;
int ia;
int ib;
int ic;
float fa;
double da;
int *ptr;
char c;
wchar_t wc;
char string1[20];
char string2[20];
char string3[20];
char string4[20];
wchar_t wstring1[20];
wchar_t wstring2[20];
wchar_t wstring3[20];
wchar_t wstring4[20];
};
void test(wchar_t* fmt_in, wchar_t* input, struct params *p, ...) {
va_list args;
va_start(args, p);
wint_t ret = vswscanf(input, fmt_in, args);
va_end(args);
wprintf(
L"%d, { sa: %hhd, ia: %d, ib: %d, ic: %d, fa: %f, da: %lf, ptr: %p, char: %c, wide char: %lc, string1: %s, string2: %s, string3: %s, string4: %s, wstring1: %ls, wstring2: %ls, wstring3: %ls, wstring4: %ls }\n",
ret, p->sa, p->ia, p->ib, p->ic, p->fa, p->da, p->ptr, p->c, p->wc, p->string1, p->string2, p->string3, p->string4, p->wstring1, p->wstring2, p->wstring3, p->wstring4
);
}
int main ()
{
struct params p = { .c = 'a' };
test(L"%hd %d", L"12 345", &p, &p.sa, &p.ia);
test(L"%x %i %i", L"12 0x345 010", &p, &p.ia, &p.ib, &p.ic);
test(L"%f.%lf", L"0.1.0.2", &p, &p.fa, &p.da);
test(L"%p", L"0xABCDEF", &p, &p.ptr);
test(L"%s", L"Hello World", &p, &p.string1);
test(L"%3i", L"0xFF", &p, &p.ia);
test(L"%c%3c", L"hello", &p, &p.c, &p.string1);
test(L"%lc", L"β", &p, &p.wc);
test(L"%lc %f", L"π 3.14", &p, &p.wc, &p.fa);
test(L"test: %2i%n", L"test: 0xFF", &p, &p.ia, &p.ib);
test(L"hello world%%", L"hello world%", &p);
test(L"hello %5ls %d", L"hello world 42", &p, &p.wstring1, &p.ia);
test(L"bye %ls %d", L"bye planet 84", &p, &p.wstring2, &p.ia);
test(L"h%1[ae]ll%1[^a] wor%1[^\n]%[d]", L"hello world", &p, &p.string1, &p.string2, &p.string3, &p.string4);
test(L"h%1[ae]ll%1[^a] wor%1[^\n]%[d]", L"halle worfdddddd", &p, &p.string1, &p.string2, &p.string3, &p.string4);
test(L"%[^a]%[b]", L"testbbbb", &p, &p.string1, &p.string2);
test(L"%ls %ls", L"Привет мир", &p, &p.wstring1, &p.wstring2);
test(L"%ls %ls", L"こんにちは 世界", &p, &p.wstring1, &p.wstring2);
test(L"%ls %d %ls %d", L"αβγ 123 δεζ 456", &p, &p.wstring1, &p.ia, &p.wstring2, &p.ib);
test(L"%ls %s %ls %s", L"αβγ test1 δεζ test2", &p, &p.wstring1, &p.string1, &p.wstring2, &p.string2);
test(L"%ls %ls %ls %ls", L"z ß 水 🍌", &p, &p.wstring1, &p.wstring2, &p.wstring3, &p.wstring4);
// Scanf stolen from the url parsing in curl
wchar_t protobuf[16];
wchar_t slashbuf[4];
wchar_t hostbuf[100];
wchar_t pathbuf[100];
// don't push NUL, make sure scanf does that
memset(protobuf, 97, 16);
memset(slashbuf, 97, 4);
memset(hostbuf, 97, 100);
memset(pathbuf, 97, 100);
int ret = swscanf(
L"https://redox-os.org\0# extra garbage for nul test", L"%15[^\n/:]:%3[/]%[^\n/?#]%[^\n]",
&protobuf, &slashbuf, &hostbuf, &pathbuf
);
if (ret < 4) {
*pathbuf = 0;
}
if (ret < 3) {
*hostbuf = 0;
}
if (ret < 2) {
*slashbuf = 0;
}
if (ret < 1) {
*protobuf = 0;
}
wprintf(L"%d \"%s\" \"%s\" \"%s\" \"%s\"\n", ret, &protobuf, &slashbuf, &hostbuf, &pathbuf);
return 0;
}