/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
* BSD-style license. Please see the COPYING file for details.
*/#ifndef _SUBSCRIPTION_H
#define_SUBSCRIPTION_H#include<stdint.h>#include"blergref.h"intsubscription_add(constchar*from,constchar*to);intsubscription_remove(constchar*from,constchar*to);intsubscription_notify(constchar*author,uint64_trecord);struct blergref *subscription_list(constchar*author,uint64_toffset,int*count,intdirection);intis_subscribed(constchar*from,constchar*to);intsubscription_count_items(constchar*user);#endif/* _SUBSCRIPTION_H */