| 176 | } |
| 177 | |
| 178 | static int append_const(var_str* to, char * from) |
| 179 | { |
| 180 | static str temp; |
| 181 | |
| 182 | temp.s = from; |
| 183 | temp.len = strlen(from); |
| 184 | |
| 185 | return append_str(to,temp); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | static int append_keys (var_str * q,const char * name, const db_key_t* k, |
no test coverage detected