Mercurial > mplayer.hg
view osdep/setenv.c @ 21843:7e5c4075fcdf
explain how to use MEncoder to create QuickTime-compatible files
Mainly based on a patch by Mark Pilgrim % pilgrim A gmail P com %
Original thread:
Date: Oct 19, 2006 9:50 PM
Subject: [MPlayer-DOCS] Interested in contributing case studies
author | gpoirier |
---|---|
date | Wed, 10 Jan 2007 00:08:16 +0000 |
parents | 44c24de55f9d |
children | d0d487227d60 |
line wrap: on
line source
/* setenv implementation for systems lacking it. */ #include "../config.h" #ifndef HAVE_SETENV #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; } #endif