Next: buffer_append

buffer_add

buffer_add(buffer, byte)
This function returns the result of adding byte, an integer, to the end of buffer. If byte is not between 0 and 255, the value appended to buffer will be the lower-order eight bits of byte.

Examples:

buffer_add(%[65, 66, 67], 10)
     => %[65, 66, 67, 10]