#!/bin/sh

if \test $# -eq 1;
then
  sed -e s/Tmp/$1/g test.tmpl >$1test.c
  if \test $? -eq 0;
  then
    echo $1test.c
  fi
fi
#eof
