]> jfr.im git - irc/quakenet/newserv.git/blame_incremental - newsearch/ns-exists.c
build: Clean up workspaces code a bit.
[irc/quakenet/newserv.git] / newsearch / ns-exists.c
... / ...
CommitLineData
1/*
2 * exists functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
10void *exists_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11void exists_free(searchCtx *ctx, struct searchNode *thenode);
12
13struct searchNode *exists_parse(searchCtx *ctx, int argc, char **argv) {
14 struct searchNode *thenode;
15
16 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
17 parseError = "malloc: could not allocate memory for this search.";
18 return NULL;
19 }
20
21 thenode->returntype = RETURNTYPE_BOOL;
22 thenode->localdata = NULL;
23 thenode->exe = exists_exe;
24 thenode->free = exists_free;
25
26 return thenode;
27}
28
29void *exists_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
30 chanindex *cip = (chanindex *)theinput;
31
32 if (cip->channel == NULL)
33 return (void *)0;
34
35 return (void *)1;
36}
37
38void exists_free(searchCtx *ctx, struct searchNode *thenode) {
39 free(thenode);
40}
41