Subversion Repositories SvarDOS

Rev

Rev 614 | 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
995 mateusz.vi 3
 * Copyright (C) 2012-2022 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
char *fdnpkg_strcasestr(const char *s, const char *find);
13
void mkpath(char *dirs);
231 mateuszvis 14
char *computelocalpath(char *longfilename, char *respath, const char *dosdir, const struct customdirs *dirlist);
219 mateuszvis 15
void removeDoubleBackslashes(char *str);
16
char *getfext(char *fname);
248 mateuszvis 17
int freadtokval(FILE *fd, char *line, size_t maxlen, char **val, char delim);
219 mateuszvis 18
#endif