Subversion Repositories SvarDOS

Rev

Rev 270 | Rev 995 | 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
void slash2backslash(char *str);
12
void strtolower(char *mystring);
13
char *fdnpkg_strcasestr(const char *s, const char *find);
14
void mkpath(char *dirs);
231 mateuszvis 15
char *computelocalpath(char *longfilename, char *respath, const char *dosdir, const struct customdirs *dirlist);
219 mateuszvis 16
void removeDoubleBackslashes(char *str);
17
char *getfext(char *fname);
248 mateuszvis 18
int freadtokval(FILE *fd, char *line, size_t maxlen, char **val, char delim);
219 mateuszvis 19
#endif