summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_template.sh
blob: 5aa8f8d45183e44d3de08eddc6423dd4bf4a6766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# This file is in the public domain.
#
# Instantiates pg_template for a particular function.

for n in $*
do
    NCAPS=`echo $n | tr a-z A-Z`
    cat pg_template.c | sed -e s/template/$n/g -e s/TEMPLATE/$NCAPS/g > pg_$n.c
    cat pg_template.h | sed -e s/template/$n/g -e s/TEMPLATE/$NCAPS/g > pg_$n.h
    echo "\#include \"pg_$n.h\"" >> hdr.h
done