Many additions and improvements

Basic previews, priority setting, better -m option
This commit is contained in:
Nikita Ivanov
2022-05-23 23:45:35 +05:00
parent 790566c72a
commit 8487750f1a
12 changed files with 77 additions and 41 deletions

View File

@ -25,6 +25,8 @@ extern char *program;
int spawn(char *args[], pid_t *cpid, int *exitcode, int *fds[2]);
int strcmpnull(char const *s1, char const *s2);
CharVec char_v_new(size_t cap);
void char_v_append(CharVec *v, char c);
void char_v_free(CharVec *v);