repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
external
/
ibm-public
/
postfix
/
dist
/
mantools
/
user2var
blob
e0107045314d59f906ad1077306287676e5614c0
1
#!/bin/sh
2
3
# user2var - create (parameter name -> variable name) mapping
4
5
# Usage: user2var mail_params.h
6
7
awk
'
8
9
/^#define[ ]+VAR_/ { name=
$3
}
10
11
/^extern.*var_/ { print "table[" name "] =
\"
"
$3
"
\"
" }
12
13
'
"$@"
|
tr
-d
';*'