]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-timestamp.c
SearchCtx should contain 'type' - this is to make life easier when defining new searc...
[irc/quakenet/newserv.git] / newsearch / ns-timestamp.c
CommitLineData
f1903ace
CP
1/*
2 * TIMESTAMP functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
10#include "../irc/irc_config.h"
f1903ace
CP
11#include "../lib/irc_string.h"
12
c8be5183
CP
13void *timestamp_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
14void timestamp_free(searchCtx *ctx, struct searchNode *thenode);
f1903ace 15
f33f3f52 16struct searchNode *timestamp_parse(searchCtx *ctx, int argc, char **argv) {
f1903ace
CP
17 struct searchNode *thenode;
18
f33f3f52 19 if (ctx->type != SEARCHTYPE_NICK) {
f1903ace
CP
20 parseError = "timestamp: this function is only valid for nick searches.";
21 return NULL;
22 }
23
9ce4f0be
IB
24 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
25 parseError = "malloc: could not allocate memory for this search.";
26 return NULL;
27 }
f1903ace
CP
28
29 thenode->returntype = RETURNTYPE_INT;
30 thenode->localdata = NULL;
31 thenode->exe = timestamp_exe;
32 thenode->free = timestamp_free;
33
34 return thenode;
35}
36
c8be5183 37void *timestamp_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
f1903ace
CP
38 nick *np = (nick *)theinput;
39
f1903ace
CP
40 return (void *)np->timestamp;
41}
42
c8be5183 43void timestamp_free(searchCtx *ctx, struct searchNode *thenode) {
f1903ace
CP
44 free(thenode);
45}