Function
GLibByteArrayprepend
Declaration [src]
GByteArray*
g_byte_array_prepend (
  GByteArray* array,
  const guint8* data,
  guint len
)
Description [src]
Adds the given data to the start of the GByteArray.
The array will grow in size automatically if necessary.
Parameters
- array
- 
            Type: An array of guint8A GByteArray.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.