diff options
| author | default <nobody@localhost> | 2024-08-29 07:08:26 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-08-29 07:08:26 +0200 |
| commit | 1022f6db87ea196630972123601639beb190b4c3 (patch) | |
| tree | e995c3fe584ef2ee99d5140556657f2aa2a94b62 /snac.h | |
| parent | 9a67b19a7cebb8f1ddaa3719d8f84386f0b380a0 (diff) | |
Bookmarking can be done from the command line.
Diffstat (limited to 'snac.h')
| -rw-r--r-- | snac.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -166,6 +166,10 @@ void mute(snac *snac, const char *actor); void unmute(snac *snac, const char *actor); int is_muted(snac *snac, const char *actor); +int is_bookmarked(snac *user, const char *id); +int bookmark(snac *user, const char *id); +int unbookmark(snac *user, const char *id); + int pin(snac *user, const char *id); int unpin(snac *user, const char *id); int is_pinned(snac *user, const char *id); |