#ifndef _GROWSTRING_H
#define _GROWSTRING_H

struct GrowString {
  int l;
  char* s;
};

void newGrowString(struct GrowString*);
void deleteGrowString(struct GrowString*);
void appendGrowString(struct GrowString*, char*);
//void prependGrowString(char*, struct GrowString*);

#endif
