diff options
Diffstat (limited to 'tools/patch_strtab')
-rw-r--r-- | tools/patch_strtab/README.md | 2 | ||||
-rw-r--r-- | tools/patch_strtab/patch_strtab.c | 13 |
2 files changed, 9 insertions, 6 deletions
diff --git a/tools/patch_strtab/README.md b/tools/patch_strtab/README.md index 6904ac1..5cdca3f 100644 --- a/tools/patch_strtab/README.md +++ b/tools/patch_strtab/README.md @@ -1,6 +1,6 @@ README:
-The program patches the .strtab section of an ELF relocatable module
+This program patches the .strtab section of an ELF relocatable module
by replacing certain escape sequences with the characters they represent.
CodeWarrior's C++ name mangling scheme may produce linkage names that
diff --git a/tools/patch_strtab/patch_strtab.c b/tools/patch_strtab/patch_strtab.c index ee0076a..bbdd4ce 100644 --- a/tools/patch_strtab/patch_strtab.c +++ b/tools/patch_strtab/patch_strtab.c @@ -1,9 +1,12 @@ /*
-patch_strtab
-
-by Max Parisi, 2020
-
-*/
+ * patch_strtab
+ *
+ * This program patches the .strtab section of an ELF relocatable module
+ * by replacing certain escape sequences with the characters they represent.
+ *
+ * by Max Parisi, 2020
+ *
+ */
#include <stdio.h>
#include <stdlib.h>
|