about summary refs log tree commit diff stats
path: root/tools/expand_string
diff options
context:
space:
mode:
Diffstat (limited to 'tools/expand_string')
-rwxr-xr-xtools/expand_string17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/expand_string b/tools/expand_string
deleted file mode 100755
index a5a9ad30..00000000
--- a/tools/expand_string
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# Expand syntax sugar for SubX string literals.
-# Helpful for converting them into handles to strings.
-
-INPUT=$(cat)
-echo "    # \"$INPUT\""
-
-# print length in bytes
-printf "    0x%x/imm32/size\n" $(echo -n $INPUT |wc -c)
-
-# print ascii codes for each character in hex
-echo -n "   "
-for c in $(echo "$INPUT" | sed -e 's/./& /g')
-do
-  echo -n " 0x$(printf '%x' "'$c")/$c"
-done
-echo