chibipub

experimental activitypub node in C
git clone git://jb55.com/chibipub
Log | Files | Refs | README | LICENSE

post.h (155B)


      1 
      2 #pragma once
      3 
      4 #include "chibipub.h"
      5 
      6 struct post
      7 {
      8 	const char *content;
      9 	const char *in_reply_to;
     10 };
     11 
     12 int create_post(struct chibipub *, struct post *);