Subversion Repositories SvarDOS

Rev

Rev 236 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 236 Rev 237
1
/*
1
/*
2
 * This file is part of pkginst (SvarDOS).
2
 * This file is part of pkginst (SvarDOS).
3
 *
3
 *
4
 * Reads environment variables that will be used by pkginst.
4
 * Reads environment variables that will be used by pkginst.
5
 * Returns 0 on success, non-zero otherwise.
5
 * Returns 0 on success, non-zero otherwise.
6
 *
6
 *
7
 * Copyright (C) 2012-2021 Mateusz Viste
7
 * Copyright (C) 2012-2021 Mateusz Viste
8
 */
8
 */
9
 
9
 
10
#ifndef READENV_H_SENTINEL
10
#ifndef READENV_H_SENTINEL
11
#define READENV_H_SENTINEL
11
#define READENV_H_SENTINEL
12
 
12
 
13
int readenv(char **dosdir, char *cfgfile, int cfgfilemaxlen);
13
int readenv(char **dosdir);
14
 
14
 
15
#endif
15
#endif
16
 
16