Subversion Repositories SvarDOS

Rev

Rev 219 | Rev 231 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 219 Rev 225
Line 1... Line 1...
1
/*
1
/*
2
 * This file is part of fdnpkg
2
 * This file is part of pkginst
3
 * Copyright (C) 2012-2017 Mateusz Viste
3
 * Copyright (C) 2012-2021 Mateusz Viste
4
 *
4
 *
5
 * It contains a few helper function...
5
 * It contains a few helper function...
6
 */
6
 */
7
 
7
 
8
#ifndef helpers_sentinel
8
#ifndef helpers_sentinel
Line 12... Line 12...
12
void slash2backslash(char *str);
12
void slash2backslash(char *str);
13
void backslash2slash(char *str);
13
void backslash2slash(char *str);
14
void strtolower(char *mystring);
14
void strtolower(char *mystring);
15
char *fdnpkg_strcasestr(const char *s, const char *find);
15
char *fdnpkg_strcasestr(const char *s, const char *find);
16
void mkpath(char *dirs);
16
void mkpath(char *dirs);
17
void mapdrives(char *s, char *mapdrv);
-
 
18
void unmapdrives(char *s, char *mapdrv);
-
 
19
char *computelocalpath(char *longfilename, char *respath, char *dosdir, struct customdirs *dirlist);
17
char *computelocalpath(char *longfilename, char *respath, char *dosdir, struct customdirs *dirlist);
20
void removeDoubleBackslashes(char *str);
18
void removeDoubleBackslashes(char *str);
21
int detect_localpath(char *url);
19
int detect_localpath(char *url);
22
char *getfext(char *fname);
20
char *getfext(char *fname);
23
#endif
21
#endif