* Forgot to add some new files...
This commit is contained in:
25
utils.h
Normal file
25
utils.h
Normal file
@ -0,0 +1,25 @@
|
||||
/* Utility functions
|
||||
*
|
||||
* Project : minidlna
|
||||
* Website : http://sourceforge.net/projects/minidlna/
|
||||
* Author : Justin Maggard
|
||||
* Copyright (c) 2008 Justin Maggard
|
||||
* This software is subject to the conditions detailed in the
|
||||
* LICENCE file provided in this distribution.
|
||||
* */
|
||||
#ifndef __UTILS_H__
|
||||
#define __UTILS_H__
|
||||
|
||||
int
|
||||
ends_with(const char * haystack, const char * needle);
|
||||
|
||||
char *
|
||||
trim(char *str);
|
||||
|
||||
char *
|
||||
modifyString(char * string, const char * before, const char * after, short like);
|
||||
|
||||
void
|
||||
strip_ext(char * name);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user