diff options
author | jacopo grandi <jak.sk8@hotmail.it> | 2021-02-22 14:52:31 +0100 |
---|---|---|
committer | jacopo grandi <jak.sk8@hotmail.it> | 2021-02-22 14:52:31 +0100 |
commit | 02c89fceeb915e31b36dd4acb4218ccd913b2ce8 (patch) | |
tree | 005c263cbbe49f299d02b5dd8ccdf7d0157ad19e /gst/info.c | |
parent | d1dc6ddc035193ab6e2570f58b7e3a79fc335bce (diff) |
rename ingame template and army
Diffstat (limited to 'gst/info.c')
-rw-r--r-- | gst/info.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -941,3 +941,14 @@ int info_army_get_list (char l[][32]) { } return len; } + +void info_army_rename (char oldn[], char newn[]) { + char pathnameold[64]; sprintf(pathnameold, "army/%s.txt", oldn); + char pathnamenew[64]; sprintf(pathnamenew, "army/%s.txt", newn); + rename(pathnameold, pathnamenew); +} + +void info_army_remove (char name[]) { + char pathname[64]; sprintf(pathname, "army/%s.txt", name); + remove(pathname); +} |