X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fhelper%2Fconfiguration.h;h=749f007d337453310fdcbc7720c9feb6d4101777;hb=37299b2b5809fa9a3bd531ca3e2528085e095a0e;hp=5bdb58f631855a9b083025d6877e1b3ff6deb2ad;hpb=8b994145b849c40b0a195c3fb332b9770b2f9097;p=openocd.git diff --git a/src/helper/configuration.h b/src/helper/configuration.h index 5bdb58f631..749f007d33 100644 --- a/src/helper/configuration.h +++ b/src/helper/configuration.h @@ -20,18 +20,26 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + #ifndef CONFIGURATION_H #define CONFIGURATION_H -#include "command.h" +#include + +int parse_cmdline_args(struct command_context *cmd_ctx, + int argc, char *argv[]); + +int parse_config_file(struct command_context *cmd_ctx); +void add_config_command(const char *cfg); + +void add_script_search_dir(const char *dir); + +int configuration_output_handler(struct command_context *cmd_ctx, + const char *line); + +FILE *open_file_from_path(const char *file, const char *mode); -extern int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[]); -extern int parse_config_file(struct command_context_s *cmd_ctx); -extern void add_config_command (const char *cfg); -extern void add_script_search_dir (const char *dir); -extern int configuration_output_handler(struct command_context_s *context, const char* line); -extern FILE *open_file_from_path (char *file, char *mode); -extern char *find_file(const char *name); -int add_default_dirs(void); +char *find_file(const char *name); +char *get_home_dir(const char *append_path); -#endif /* CONFIGURATION_H */ +#endif /* CONFIGURATION_H */