On Thu, 14 Nov 2024 14:38:05 +0530 <kirankum...@marvell.com> wrote: > > +uint8_t > +graph_is_node_active_in_graph(struct node *node)
For true/false functions bool type is preferred. It prevents cases where function accidentally returns 2.
On Thu, 14 Nov 2024 14:38:05 +0530 <kirankum...@marvell.com> wrote: > > +uint8_t > +graph_is_node_active_in_graph(struct node *node)
For true/false functions bool type is preferred. It prevents cases where function accidentally returns 2.