]> Kevux Git Server - fll/commit
Update: start enum's at 1 where possible
authorKevin Day <thekevinday@gmail.com>
Thu, 12 Sep 2019 02:03:08 +0000 (21:03 -0500)
committerKevin Day <thekevinday@gmail.com>
Thu, 12 Sep 2019 02:03:08 +0000 (21:03 -0500)
commit67522a6fe111a3e4d53308c7b3e975f8846d5bf0
tree7af04ae1837199657b4b64f38219c5a1d1033fff
parent9e02ebb8e4eef00d80a6ae61614eb62ee239119c
Update: start enum's at 1 where possible

By always setting enums as 1, the 0 value can be reserved as not-set.
There are still a few situations where enums must not start at 1.
Some are:
1) Type defenitions, so as in f_types where the status codes need to start at 0 for f_false.
2) Any enums that map 1to1 to an array, such as with parameter options.
level_0/f_console/c/console.h
level_0/f_fss/c/fss.h
level_0/f_socket/c/socket.h
level_3/byte_dump/c/byte_dump.h
level_3/firewall/c/firewall.h