diff options
| author | Donald Lee <dlqs@gmx.com> | 2021-07-17 20:46:10 +0800 |
|---|---|---|
| committer | Donald Lee <dlqs@gmx.com> | 2021-07-18 06:32:03 +0800 |
| commit | 2b67227e6e69a0d5ce1831185f95182f8874ee37 (patch) | |
| tree | 0656b47a3192065d62d8ccae37bf9a381c7fe8b6 /lib/frrlua.c | |
| parent | 8878080b1b5185c45ce1ec6f633d628ca41643ad (diff) | |
lib: Add int encoder/decoder
Signed-off-by: Donald Lee <dlqs@gmx.com>
Diffstat (limited to 'lib/frrlua.c')
| -rw-r--r-- | lib/frrlua.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/frrlua.c b/lib/frrlua.c index e97e48121c..710d9ece00 100644 --- a/lib/frrlua.c +++ b/lib/frrlua.c @@ -309,6 +309,14 @@ void lua_decode_noop(lua_State *L, int idx, const void *ptr) { } + +/* + * Noop decoder for int. + */ +void lua_decode_int_noop(lua_State *L, int idx, int i) +{ +} + /* * Logging. * |
