summaryrefslogtreecommitdiffstats
path: root/src/search.h
blob: 1c7c61fb8355660177175a0b700e4241ee02102c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef SEARCH_H
#define SEARCH_H

#include "types.h"

int check_hash(const recipe * r, const char * s);
int query_for_items(const recipe * r, const char * s, int strict);
int query_for_items_pbn(const recipe * r, const char * s, int strict);

#endif