You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
519 B
C

#define _GNU_SOURCE
// Submodules
#include "ffdb/fs_list.h"
#include "ffdb/trie.h"
#include "ap/object.h"
#include "collections/array.h"
#include "util/format.h"
// Model
#include "model/account.h"
#include "model/activity.h"
#include "model/outbox_envelope.h"
#include "model/status.h"
#include "model/server.h"
// Standard Library
#include <string.h>
#include <stdlib.h>
#include <time.h>
void develop()
{
// TODO: remove memory leak
struct ap_object* act = activity_from_local_id(27);
ap_object_free(act);
}