j
k
j a
j l
Paul Eggert wrote:
+ strcpy(env0, "TZ="); + strcat(env0, val); + env[0] = env0;
This is more-idiomatically rendered as: env[0] = strcat(strcpy(env0, "TZ="), val);
Back to the thread
Back to the list