Subversion Repositories SvarDOS

Rev

Rev 219 | Rev 231 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 mateuszvis 1
/*
225 mateuszvis 2
 * This file is part of pkginst
3
 * Copyright (C) 2012-2021 Mateusz Viste
219 mateuszvis 4
 *
5
 * It contains a few helper function...
6
 */
7
 
8
#ifndef helpers_sentinel
9
#define helpers_sentinel
10
#include "loadconf.h"   /* required for the customdirs struct */
11
int isversionnewer(char *v1, char *v2);
12
void slash2backslash(char *str);
13
void backslash2slash(char *str);
14
void strtolower(char *mystring);
15
char *fdnpkg_strcasestr(const char *s, const char *find);
16
void mkpath(char *dirs);
17
char *computelocalpath(char *longfilename, char *respath, char *dosdir, struct customdirs *dirlist);
18
void removeDoubleBackslashes(char *str);
19
int detect_localpath(char *url);
20
char *getfext(char *fname);
21
#endif