ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_string.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_STRING_H
9 #define SCAMAC_STRING_H
10 
11 typedef struct {
12  int nalloc;
13  int nstr;
14  char * str;
15 } scamac_string_st;
16 
17 /* extendable string routines */
18 
19 void scamac_string_empty(scamac_string_st * estr);
20 void scamac_string_append(scamac_string_st * estr, const char * str);
21 char * scamac_string_get(const scamac_string_st * estr);
22 
23 void scamac_strappend(char ** str, const char * app);
24 void scamac_strempty(char ** str);
25 
26 #endif /* SCAMAC_STRING_H */