Add null to terminate strings

This commit is contained in:
2024-07-24 20:58:04 +02:00
parent 2453d639ff
commit d25058fdec
4 changed files with 60 additions and 20 deletions

View File

@@ -1,3 +1,5 @@
package pdu
var ByteBufferPool = NewBufferPoolManager()
const NULL = byte(0x00)
var NULL_ARR = []byte{NULL}