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.

28 lines
542 B
C

#define _GNU_SOURCE
#include "ffdb/fs_list.h"
#include "ffdb/trie.h"
#include "collections/array.h"
#include "model/account.h"
#include "model/ap/account.h"
#include "model/ap/activity.h"
#include "model/ap/activity/rsa_signature_2017.h"
#include "model/ap/outbox_envelope.h"
#include "model/status.h"
#include "model/server.h"
#include "format.h"
#include <string.h>
#include <stdlib.h>
#include <time.h>
void develop()
{
// TODO: remove memory leak
struct ap_activity* act = ap_activity_from_local_id(27);
ap_activity_free(act);
}