ocarina/include/libsaria/format.h
Bryan Schumaker a3130a7da5 libsaria: Cache lowercase strings, too
This is useful for sorting the library when filling in the list, since I
do many comparisons with the same artists and albums.  This beats having
to lowercase them every time!
2011-12-28 11:00:08 -05:00

18 lines
272 B
C++

#ifndef LIBSARIA_FORMAT_H
#define LIBSARIA_FORMAT_H
#include <set>
#include <string>
using namespace std;
namespace libsaria
{
set<string> *format_text(const string &);
string *lowercase(const string &);
void print_format_stats();
}
#endif /* LIBSARIA_FORMAT_H */