mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
8 lines
127 B
C
8 lines
127 B
C
#include <stdio.h>
|
|
#include <crypt.h>
|
|
|
|
main(int argc, char** argv) {
|
|
printf("%s\n", crypt(argv[1], "aa"));
|
|
return 0;
|
|
}
|