/* * FindPidfPath.c */ #ident "$URL: svn://elmer/devel/SVN/SDDAS/trunk/libPIDF/FindPidfPath.c $ %D% SwRI" #include #include "pidf_ret.h" #include "libdb.h" #include "libCfg.h" #include "pidf_local.h" char *FindPidfPath (SDDAS_ULONG data_key) { char *path; if (!(path = dbCfgPath (data_key, "PidfPath"))) { return (char *) NULL; } return path; }