X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fscript.h;h=381f9523b5963674d4bedb69be6d9a6cd9589af4;hb=efca41606d4083eade90047d57cb963eb3b7e731;hp=2e26418d46be4f72f1e91ea17d052c348c53b52f;hpb=5cbef906209eb5005f821af8f55a6f5d7e7d060c;p=tinc diff --git a/src/script.h b/src/script.h index 2e26418d..381f9523 100644 --- a/src/script.h +++ b/src/script.h @@ -1,3 +1,6 @@ +#ifndef TINC_SCRIPT_H +#define TINC_SCRIPT_H + /* script.h -- header file for script.c Copyright (C) 1999-2005 Ivo Timmermans, @@ -18,8 +21,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __TINC_SCRIPT_H__ -#define __TINC_SCRIPT_H__ +#include "system.h" typedef struct environment { int n; @@ -28,11 +30,10 @@ typedef struct environment { } environment_t; extern int environment_add(environment_t *env, const char *format, ...); -extern int environment_placeholder(environment_t *env); extern void environment_update(environment_t *env, int pos, const char *format, ...); extern void environment_init(environment_t *env); extern void environment_exit(environment_t *env); extern bool execute_script(const char *name, environment_t *env); -#endif /* __TINC_SCRIPT_H__ */ +#endif