Mercurial > mplayer.hg
view osdep/setenv.c @ 25713:0fe20154a883
gui_opts should be const for win32 gui as well (why, oh why, was all
this code duplicated??).
author | reimar |
---|---|
date | Sun, 13 Jan 2008 16:26:28 +0000 |
parents | 936209c39ed1 |
children | 5cfef41a1771 |
line wrap: on
line source
/* setenv implementation for systems lacking it. */ #include "config.h" #include <stdlib.h> #include <string.h> #ifndef MP_DEBUG #define NDEBUG #endif #include <assert.h> int setenv(const char *name, const char *val, int overwrite) { int len = strlen(name) + strlen(val) + 2; char *env = malloc(len); if (!env) { return -1; } assert(overwrite != 0); strcpy(env, name); strcat(env, "="); strcat(env, val); putenv(env); return 0; }