blob: 51d1ec1372b03c048c12ed53259cf33717a17183 [file] [log] [blame]
#!/bin/sh
in=$1
out=$2
(
cat <<EOF
#ifndef __INCLUDE_GUARD_CCS_H
#define __INCLUDE_GUARD_CCS_H
const char css[] =
EOF
sed -e 's:^:\t":' -e 's:$:\\n":' "${in}"
cat <<EOF
;
#endif
EOF
) > "${out}"