فهرست منبع

* Forgot to add this for strings/

svn: 186
Bryan Drewery 22 سال پیش
والد
کامیت
7bcc85ec9d
1فایلهای تغییر یافته به همراه26 افزوده شده و 0 حذف شده
  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
+
+
+
+
+
+
+
+
+
+
+