10 lines
141 B
Bash
10 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "/* This file is autogenerated by $0 - do not edit */"
|
||
|
echo
|
||
|
|
||
|
while read atom
|
||
|
do
|
||
|
echo extern xcb_atom_t $atom\;
|
||
|
done < $1
|