diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-04-02 13:33:02 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-04-02 13:33:02 -0400 |
commit | f4ec5ce5e758361a91929487950747bc4ae178fc (patch) | |
tree | c9ed2be393e28046f5ea8c98df5fb9f21dc7e380 | |
parent | 35bae7113bbfdd40b98fbff250cf561e678c3739 (diff) |
note to self
-rw-r--r-- | shed.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -29,6 +29,7 @@ struct shed *shed(struct shed *e) e->head = e->cur; e->tail = e->cur; } else { + /* TODO: skip if the last input was blank */ e->tail->next = calloc(1, sizeof(*e->cur)); if (e->tail->next == NULL) { /* FIXME */ |