ttest program - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 140c21e2f1fee2016af107b87f42a591f300f56a
DIR parent 2eb305240f559fa69a08969184ce9585d16f8b02
HTML Author: rsc <devnull@localhost>
Date: Tue, 29 Nov 2005 04:05:42 +0000
ttest program
Diffstat:
A src/libmach/demangler.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)
---
DIR diff --git a/src/libmach/demangler.c b/src/libmach/demangler.c
t@@ -0,0 +1,27 @@
+#include <u.h>
+#include <libc.h>
+#include <bio.h>
+#include <mach.h>
+
+void
+main(void)
+{
+ Biobuf b, bout;
+ char *p, *s;
+ char buf[100000];
+
+ Binit(&b, 0, OREAD);
+ Binit(&bout, 1, OWRITE);
+
+ while((p = Brdline(&b, '\n')) != nil){
+ p[Blinelen(&b)-1] = 0;
+ werrstr("no error");
+ s = demanglegcc2(p, buf);
+ if(s == p)
+ Bprint(&bout, "# %s (%r)\n", p);
+ else
+ Bprint(&bout, "%s\t%s\n", p, s);
+ }
+ Bflush(&bout);
+ exits(0);
+}