Packages

Native Elixir wrapper for the Scrypt KDF

Current section

Files

Jump to
scrypt_elixir_copy scrypt libcperciva POSIX posix-restrict.c
Raw

scrypt/libcperciva/POSIX/posix-restrict.c

static int
foo(char * restrict x, char * restrict y)
{
return (x == y);
}
int
main(void)
{
char x[10];
char y[10];
return (foo(x, y));
}