aboutsummaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/misc.c b/src/misc.c
index 23d90b0..3010d16 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -50,7 +50,9 @@ IsSymbolic(char ch)
}
/** Get the name of a shell variable (returns a copy). */
-char *GetSymbolName(const char *str) {
+char *
+GetSymbolName(const char *str)
+{
char *temp;
int stop;
@@ -187,7 +189,9 @@ Trim(char *str)
}
/** Copy a string. */
-char *CopyString(const char *str) {
+char *
+CopyString(const char *str)
+{
char *temp;
int len;