diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-17 19:14:26 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-17 19:14:26 +0100 |
| commit | d6fdf14d5c320bdca455f910d58d652c5a7827da (patch) | |
| tree | 15642a013e719e81526cf02b6656ce22adb8a3cf /utils/invert.c | |
| parent | a26ae103faf8fa53b65f7757fb8b4255a37fcd22 (diff) | |
| download | nissy-core-d6fdf14d5c320bdca455f910d58d652c5a7827da.tar.gz nissy-core-d6fdf14d5c320bdca455f910d58d652c5a7827da.zip | |
Simplified move and transform code
Diffstat (limited to '')
| -rw-r--r-- | utils/invert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/invert.c b/utils/invert.c index aa912e5..cd54a87 100644 --- a/utils/invert.c +++ b/utils/invert.c | |||
| @@ -11,8 +11,8 @@ int main() { | |||
| 11 | cube_t cube; | 11 | cube_t cube; |
| 12 | 12 | ||
| 13 | fgets(str, STRLENMAX, stdin); | 13 | fgets(str, STRLENMAX, stdin); |
| 14 | cube = readcube(H48, str); | 14 | cube = readcube("H48", str); |
| 15 | writecube(H48, inverse(cube), str); | 15 | writecube("H48", inverse(cube), str); |
| 16 | fputs(str, stdout); | 16 | fputs(str, stdout); |
| 17 | 17 | ||
| 18 | return 0; | 18 | return 0; |
