void printf(int n,...)
{
void* lol;
va_list a;
va_start(a,n);
lol = va_arg(a,void*);
uint32_t len;
system_call_4(403, 0, (uint64_t)lol, 32, (uint64_t) &len);
va_end(a);
}
/*
*printf:
*usage: print values to the console
*parameters:
*first: number of values to be printed
*values to be printed(__VA_ARGS__)
*/
printf(3,"ayy lmao","( ͡° ͜ʖ ͡°)",4);

Copyright © 2026, NextGenUpdate.
All Rights Reserved.