shithub: mc

Download patch

ref: ea7fb6cca6d0fbe0f4f3f3ef269d97e76c488c27
parent: b7b99ac74c22eaf17e89c79327c0c32f991ce089
author: Ori Bernstein <[email protected]>
date: Wed Dec 11 21:07:28 EST 2013

Add one more missing file

--- /dev/null
+++ b/test/strstrip.myr
@@ -1,0 +1,23 @@
+use std
+
+const main = {
+	std.put("\"%s\"\n", std.strstrip("  abc  "))
+	std.put("\"%s\"\n", std.strfstrip("  abc  "))
+	std.put("\"%s\"\n", std.strrstrip("  abc  "))
+
+	std.put("--\n")
+	std.put("\"%s\"\n", std.strstrip("  世界  "))
+	std.put("\"%s\"\n", std.strfstrip("  世界  "))
+	std.put("\"%s\"\n", std.strrstrip("  世界  "))
+
+	std.put("--\n")
+	std.put("\"%s\"\n", std.strstrip("    "))
+	std.put("\"%s\"\n", std.strfstrip("    "))
+	std.put("\"%s\"\n", std.strrstrip("    "))
+
+	std.put("--\n")
+	std.put("\"%s\"\n", std.strstrip(""))
+	std.put("\"%s\"\n", std.strfstrip(""))
+	std.put("\"%s\"\n", std.strrstrip(""))
+	-> 0
+}