/* Time-stamp: <96/11/27 17:41:30 john> */
/* Get the name from the query string */

/*
# Purpose:  I don't think I use this any more -- 961127
 */

#include <stdio.h>
#include "attr.h"
#include "cgi.h"
#include "misc.h"

int main(argc, argv)
     int argc;
     char * argv [];
{
  char *road_name = get_field((char*)getenv("QUERY_STRING"), "name");
  if (road_name != NULL)
    {
      printf("%s\n", road_name);
    }
  exit (0);
}

/* end of get-name.c */
