diff options
author | Mike Pall <mike> | 2011-02-07 23:49:27 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-02-07 23:49:27 +0100 |
commit | 7a37b93f1b40ba83cc68965b1c80c35363c1493d (patch) | |
tree | d60ad18e47839b3998e1191672249735c46a99cc /doc | |
parent | fb53d4aeb7590e0e8437b03589ef68adf4611570 (diff) | |
download | luajit-7a37b93f1b40ba83cc68965b1c80c35363c1493d.tar.gz luajit-7a37b93f1b40ba83cc68965b1c80c35363c1493d.tar.bz2 luajit-7a37b93f1b40ba83cc68965b1c80c35363c1493d.zip |
FFI: Record ffi.copy() and ffi.fill().
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ext_ffi_api.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ext_ffi_api.html b/doc/ext_ffi_api.html index f0c4de90..7c2e53dd 100644 --- a/doc/ext_ffi_api.html +++ b/doc/ext_ffi_api.html | |||
@@ -312,13 +312,13 @@ is converted to a <tt>"const void *"</tt>. | |||
312 | </p> | 312 | </p> |
313 | <p> | 313 | <p> |
314 | In the first syntax, <tt>len</tt> gives the number of bytes to copy. | 314 | In the first syntax, <tt>len</tt> gives the number of bytes to copy. |
315 | In case <tt>src</tt> is a Lua string, the maximum copy length is the | 315 | Caveat: if <tt>src</tt> is a Lua string, then <tt>len</tt> must not |
316 | number of bytes of the string plus a zero-terminator. Caveat: the | 316 | exceed <tt>#src+1</tt>. |
317 | copied data may not be zero-terminated if <tt>len ≤ #src</tt>. | ||
318 | </p> | 317 | </p> |
319 | <p> | 318 | <p> |
320 | In the second syntax, the source of the copy must be a Lua string. All | 319 | In the second syntax, the source of the copy must be a Lua string. All |
321 | bytes of the string plus a zero-terminator are copied to <tt>dst</tt>. | 320 | bytes of the string <em>plus a zero-terminator</em> are copied to |
321 | <tt>dst</tt> (i.e. <tt>#src+1</tt> bytes). | ||
322 | </p> | 322 | </p> |
323 | <p> | 323 | <p> |
324 | Performance notice: <tt>ffi.copy()</tt> may be used as a faster | 324 | Performance notice: <tt>ffi.copy()</tt> may be used as a faster |