diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-30 02:12:02 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-30 02:12:02 -0400 |
commit | 49f7c2be366f0b918b68a4cc8e4335ebab0a15ba (patch) | |
tree | 16a9123cdab4863c283050690a6889803e92a92c /src/command.h | |
parent | added tail and head (diff) | |
download | lazysphere-49f7c2be366f0b918b68a4cc8e4335ebab0a15ba.tar.gz lazysphere-49f7c2be366f0b918b68a4cc8e4335ebab0a15ba.tar.bz2 lazysphere-49f7c2be366f0b918b68a4cc8e4335ebab0a15ba.zip |
fix ls and add start of ed
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h index 0b7b8ad..fb1acb3 100644 --- a/src/command.h +++ b/src/command.h @@ -1,4 +1,4 @@ -#include "shared.h" +#include "util/shared.h" #include <stdint.h> #include <stdlib.h> @@ -19,3 +19,4 @@ COMMAND_EMPTY(user_id); COMMAND(ls); COMMAND(tail); COMMAND(head); +COMMAND(ed); |