| 77 | } |
| 78 | |
| 79 | struct hc_slog_field *hc_slog_string(const char *name, const char *value) { |
| 80 | struct hc_slog_field *f = malloc(sizeof(struct hc_slog_field)); |
| 81 | field_init(f, name, &HC_STRING)->as_string = strdup(value); |
| 82 | return f; |
| 83 | } |
| 84 | |
| 85 | struct hc_slog_field *hc_slog_time(const char *name, const hc_time_t value) { |
| 86 | struct hc_slog_field *f = malloc(sizeof(struct hc_slog_field)); |