#!/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}"
