diff options
| author | Max Audron <audron@cocaine.farm> | 2020-04-30 12:30:11 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2020-04-30 12:30:11 +0200 |
| commit | 002ea77d28dfa18b7726bcae8a5ffed623058deb (patch) | |
| tree | ce812961b97655a8f47725682d0734cee965869d /src/util.rs | |
| parent | refactor everything (diff) | |
cleanup
Diffstat (limited to 'src/util.rs')
| -rw-r--r-- | src/util.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs index dd87f7f..192e270 100644 --- a/src/util.rs +++ b/src/util.rs @@ -19,6 +19,7 @@ macro_rules! match_variant { }; } +/// Prepend the length of `buf` to `buf` pub fn prepend_byte_len(buf: &mut Vec<u8>) { use std::convert::TryInto; let len: i32 = buf.len().try_into().unwrap(); @@ -29,6 +30,7 @@ pub fn prepend_byte_len(buf: &mut Vec<u8>) { buf.insert(0, ulen[0]); } +/// Insert a bytes `input` into `buf` at position `pos` pub fn insert_bytes(pos: usize, buf: &mut Vec<u8>, input: &mut [u8]) { input.reverse(); for i in input { |
