Cleanup
This commit is contained in:
parent
18c725042a
commit
ce388b4ee4
@ -7,57 +7,13 @@
|
|||||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef UNICODE
|
|
||||||
#define _UNICODE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#define _T(x) x
|
#define _T(x) x
|
||||||
|
|
||||||
#ifdef _UNICODE
|
|
||||||
#define TS "%ls"
|
|
||||||
#else
|
|
||||||
#define TS "%s"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static
|
|
||||||
inline
|
|
||||||
int
|
|
||||||
_tcsicmp(const char *a,
|
|
||||||
const char *b)
|
|
||||||
{
|
|
||||||
while(*a && tolower(*a) == tolower(*b))
|
|
||||||
{
|
|
||||||
a++;
|
|
||||||
b++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return *a - *b;
|
|
||||||
}
|
|
||||||
|
|
||||||
static
|
|
||||||
inline
|
|
||||||
char *
|
|
||||||
concat(const char *prefix,
|
|
||||||
const char *suffix)
|
|
||||||
{
|
|
||||||
int prefixlen = strlen(prefix);
|
|
||||||
int suffixlen = strlen(suffix);
|
|
||||||
|
|
||||||
char *buf = malloc((prefixlen + suffixlen + 1) * sizeof(*buf));
|
|
||||||
|
|
||||||
strcpy(buf, prefix);
|
|
||||||
strcpy(buf + prefixlen, suffix);
|
|
||||||
|
|
||||||
return buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
static
|
static
|
||||||
inline
|
inline
|
||||||
char *
|
char *
|
||||||
@ -148,15 +104,3 @@ split_argv(const char *argv0,
|
|||||||
*exe_ptr = exe;
|
*exe_ptr = exe;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static
|
|
||||||
inline
|
|
||||||
int
|
|
||||||
run_final(const char *executable,
|
|
||||||
const char *const *argv)
|
|
||||||
{
|
|
||||||
execvp(executable, (char **) argv);
|
|
||||||
perror(executable);
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user