configfile.h 225 B

123456789101112
  1. /*
  2. * configfile.h
  3. *
  4. * Function to read pptpd config file.
  5. */
  6. #ifndef _PPTPD_CONFIGFILE_H
  7. #define _PPTPD_CONFIGFILE_H
  8. int read_config_file(char *filename, char *keyword, char *value);
  9. #endif /* !_PPTPD_CONFIGFILE_H */