samples/f.ysl2
author Hartmut Goebel <h.goebel@crazy-compilers.com>
Thu, 19 Mar 2020 10:47:36 +0100
changeset 63 37d51c3abaae
parent 0 76005e62091d
permissions -rw-r--r--
Release 2.6.3
include yslt.yml2

tstylesheet {
    function stType {
        param "type";

        choose {
            when "$type='long'" > DINT
            when "$type='short'" > INT
        }
    }

    function cType {
        param "type";

        when "$type='long'" > int32_t
        when "$type='short'" > int16_t
    }
}