зеркало из https://github.com/mozilla/pjs.git
8 строки
127 B
C
8 строки
127 B
C
|
#include <stdio.h>
|
||
|
#include <crypt.h>
|
||
|
|
||
|
main(int argc, char** argv) {
|
||
|
printf("%s\n", crypt(argv[1], "aa"));
|
||
|
return 0;
|
||
|
}
|