Explorar el Código

* Forgot to add this for strings/

svn: 186
Bryan Drewery hace 22 años
padre
commit
7bcc85ec9d
Se han modificado 1 ficheros con 26 adiciones y 0 borrados
  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
+
+
+
+
+
+
+
+
+
+
+