}
-static char *filename_token(char *token) {
+static char *filename_token(char *token)
+{
char *pos;
if (*token == '\0') return NULL;
for(pos = token; *pos != '\0'; pos++) {
}
-static char *numeric_token(char *token) {
+static char *numeric_token(char *token)
+{
char *pos;
if (*token == '\0') return NULL;
for(pos = token; *pos != '\0'; pos++) {
}
-void close_source(text *txt) {
+void close_source(text *txt)
+{
source *tmp;
if (txt->src->fd != -1) close(txt->src->fd);
if (txt->src->prefix != NULL) myfree(txt->src->prefix);
}
-void close_text(text *txt) {
+void close_text(text *txt)
+{
substitution *subst;
formatted *fmt;
conditional *cond;