notmuch/test/ghost-report.cc
uncrustify df4c66f85d test: run uncrustify
This is the result of running:

    $ uncrustify --replace --config ../devel/uncrustify.cfg *.cc *.c *.h

in the test directory.
2021-03-13 08:45:34 -04:00

17 lines
291 B
C++

#include <iostream>
#include <cstdlib>
#include <xapian.h>
int
main (int argc, char **argv)
{
if (argc < 2) {
std::cerr << "usage: ghost-report xapian-dir" << std::endl;
exit (1);
}
Xapian::Database db (argv[1]);
std::cout << db.get_termfreq ("Tghost") << std::endl;
}