* give all commands their own function
[citadel.git] / citadel / file_ops.h
1 /* $Id$ */
2 void OpenCmdResult (char *, const char *);
3 void abort_upl (struct CitContext *who);
4
5 int network_talking_to(char *nodename, int operation);
6
7 /*
8  * Operations that can be performed by network_talking_to()
9  */
10 enum {
11         NTT_ADD,
12         NTT_REMOVE,
13         NTT_CHECK
14 };