void ByteArray_AppendCopyUpToRET ( ByteArray * array, byte * data ) // size in bytes { int32 i ; for ( i = 0 ; 1 ; i ++ ) { if ( data [ i ] == _RET ) break ; } ByteArray_AppendCopy ( array, i, data ) ; // ! after we find out how big 'i' is }
void _CompileN ( byte * data, int32 size ) { ByteArray_AppendCopy ( _Q_CodeByteArray, size, data ) ; // size in bytes }