aboutsummaryrefslogtreecommitdiff
path: root/gst/info.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/info.c')
-rw-r--r--gst/info.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/gst/info.c b/gst/info.c
index 15c7c0b..2328df3 100644
--- a/gst/info.c
+++ b/gst/info.c
@@ -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);
+}