mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 11:45:05 +01:00
10 lines
No EOL
182 B
C
10 lines
No EOL
182 B
C
#include <stdio.h>
|
|
#include <assert.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char *self = argv[0];
|
|
char first = self[0];
|
|
|
|
assert((first < 128) && "argv[0] is not ascii/utf-8");
|
|
} |