ocarina/include/core/filter.h
Anna Schumaker 95064e4537 Rename lib/ -> core/
I plan to introduce a new lib/ that sits between the gui and the backend
files (similar to how glibc sits between the kernel and userspace).
This gets the rename out of the way before I change my mind again.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-06-05 10:21:32 -04:00

19 lines
344 B
C++

/*
* Copyright 2013 (c) Anna Schumaker.
*/
#ifndef OCARINA_FILTER_H
#define OCARINA_FILTER_H
#include <set>
#include <string>
namespace filter {
std::string add(const std::string &, unsigned int);
void search(const std::string &, std::set<unsigned int> &);
std::string lowercase(const std::string &);
};
#endif /* OCARINA_FILTER_H */