Function
GLibByteArrayappend
Declaration [src]
GByteArray*
g_byte_array_append (
  GByteArray* array,
  const guint8* data,
  guint len
)
      Description [src]
Adds the given bytes to the end of the GByteArray.
The array will grow in size automatically if necessary.
Parameters
array- 
            
Type: An array of
guint8A byte array.
The data is owned by the caller of the function.  data- 
            
Type: An array of
guint8The byte data to be added.
The length of the array is specified in the lenargument.The data is owned by the caller of the function.  len- 
            
Type:
guintThe number of bytes to add.