diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-10-31 20:50:45 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-10-31 21:39:16 +0100 |
commit | 402f60359e046aa5fef5c17b459a5d0a30fa7ebb (patch) | |
tree | 86cd34fab1438fea01c058a40eb50fa6677b0785 /lib/fs.c | |
parent | c6dae4249c8211aab78af500e9753ba0d51b2de0 (diff) |
lib: introduce struct library
Introduce a new "struct" library which is a port of the Python 3.10 struct
module with a reduced set of API functions. It supports the same format
patterns and conversions while providing the following methods:
struct = require('struct');
buf = struct.pack("fmt", args...);
values = struct.unpack("fmt", buf);
struct_inst = struct.new("fmt");
buf = struct_inst.pack(args...);
values = struct_inst.unpack(buf);
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'lib/fs.c')
0 files changed, 0 insertions, 0 deletions