/* * DC-API: Distributed Computing Platform for Master-Worker Applications * * Internal definitions * * Authors: * Gabor Gombas * * Copyright MTA SZTAKI, 2006 */ /* */ #ifndef __DC_INTERNAL_H_ #define __DC_INTERNAL_H_ #ifdef __cplusplus extern "C" { #endif /******************************************************************** * Function prototypes */ /* Parses a configuration file */ int _DC_parseCfg(const char *cfgfile); /* Copies a file */ int _DC_copyFile(const char *src, const char *dst); /* Processes a unit suffix and adjust the value accordingly */ long long _DC_processSuffix(const char *suffix); #ifdef __cplusplus } #endif #endif /* __DC_INTERNAL_H_ */