/***********************************************************************
* Code listing from "Advanced Linux Programming," by CodeSourcery LLC *
* Copyright (C) 2001 by New Riders Publishing *
* See COPYRIGHT for license information. *
***********************************************************************/
#include
#include
int main ()
{
char* server_name = getenv ("SERVER_NAME");
if (server_name == NULL)
/* The SERVER_NAME environment variable was not set. Use the
default. */
server_name = "server.my-company.com";
printf ("accessing server %s\n", server_name);
/* Access the server here... */
return 0;
}