xref: /linux/tools/net/sunrpc/xdrgen/templates/C/enum/encoder/enum.j2 (revision 9ad8d22f2f3fad7a366c9772362795ef6d6a2d51)
1{# SPDX-License-Identifier: GPL-2.0 #}
2
3{% if annotate %}
4/* enum {{ name }} */
5{% endif %}
6{% if name in public_apis %}
7bool
8{% else %}
9static bool __maybe_unused
10{% endif %}
11xdrgen_encode_{{ name }}(struct xdr_stream *xdr, {{ name }} value)
12{
13	return xdr_stream_encode_u32(xdr, value) == XDR_UNIT;
14}
15