/** \file helpers.hpp * * Definitions of some helper functions for the parsing of value files. * */ #ifndef FRAGMENTATION_HELPERS_HPP_ #define FRAGMENTATION_HELPERS_HPP_ /*********************************************** includes ***********************************/ // include config.h #ifdef HAVE_CONFIG_H #include #endif // ======================================= FUNCTIONS ========================================== bool FilePresent(const char *filename, bool test); bool TestParams(int argc, char **argv); char *FixedDigitNumber(const int FragmentNumber, const int digits); #endif /* FRAGMENTATION_HELPERS_HPP_*/