blob: 4729cb8108d503982b8466d19ff3519396485242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EXPANSION_H
#define EXPANSION_H
#include <stddef.h>
#include <utils/libstring.h>
#include "helper.h"
struct string *expand_substitution(char *str, int *i, int *error, char delim);
struct string *expand_word(struct string *word);
#endif /* ! EXPANSION_H */
|