Przeglądaj źródła

* Forgot to add this for strings/

svn: 186
Bryan Drewery 22 lat temu
rodzic
commit
7bcc85ec9d
1 zmienionych plików z 26 dodań i 0 usunięć
  1. 26 0
      misc/dostrings

+ 26 - 0
misc/dostrings

@@ -0,0 +1,26 @@
+#!/bin/sh
+#DO NOT RUN THIS FILE AT ALL.
+
+hfiles="`find src/strings/ -name \*.h`"
+for s in $hfiles
+do
+ if test -z "$1"; then
+  cp -f $s src/`basename $s`
+#  echo "copying $s to src/`basename $s`"
+  ./stringfix src/`basename $s`
+ else
+  rm -f src/`basename $s`
+#  echo "removing src/`basename $s`"
+ fi
+done
+
+
+
+
+
+
+
+
+
+
+