mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

@akiraak Shift JISで「能」の最後の1バイトがバックスラシュと同じになってしまうからですね〜。Shift JISこわいw

Ubuntu 16.04/gcc 5.4.0でも再現できましたw

$ cat nou.c
<stdio.h>
<stdlib.h>

void
main(void)
{
int f = 0;
// フラグを立てる機能
f = 1;
printf("f=%d\n", f);
}
$ gcc nou.c && ./a.out
f=1
$ iconv -f UTF8 -t SHIFT-JIS nou.c > nou-sjis.c
$ gcc nou-sjis.c && ./a.out
f=0