You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/powertop/files/csstoh

19 lines
198 B

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