cio_read_to_buf(...) and cio_write_from_buf(...) functions syntax modification

This commit is contained in:
Francois-Olivier Devaux 2005-05-26 12:07:46 +00:00
parent f9eb8f93c2
commit 7e518596e0
2 changed files with 6 additions and 6 deletions

View File

@ -157,11 +157,11 @@ void cio_skip(int n)
*
* n : number of bytes to transfer
*/
void cio_read_to_buf(unsigned char* dest_buf, int n)/* Glenn adds */
void cio_read_to_buf(unsigned char* src_buf, int n)/* Glenn adds */
{
if (cio_bp + n > cio_end)
longjmp(j2k_error, 1);
memcpy(cio_bp, dest_buf, n);
memcpy(cio_bp, src_buf, n);
cio_bp += n;
}
@ -170,10 +170,10 @@ void cio_read_to_buf(unsigned char* dest_buf, int n)/* Glenn adds */
*
* n : number of bytes to transfer
*/
void cio_write_from_buf(unsigned char* src_buf, int n)/* Glenn adds */
void cio_write_from_buf(unsigned char* dest_buf, int n)/* Glenn adds */
{
if (cio_bp + n > cio_end)
longjmp(j2k_error, 1);
memcpy(src_buf, cio_bp, n);
memcpy(dest_buf, cio_bp, n);
cio_bp += n;
}

View File

@ -97,11 +97,11 @@ void cio_skip(int n);
/*
* Read n bytes, copy to buffer
*/
void cio_read_to_buf(unsigned char* buf, int n);/* Glenn Pearson adds */
void cio_read_to_buf(unsigned char* src_buf, int n);/* Glenn Pearson adds */
/*
* Write n bytes, copy from buffer
*/
void cio_write_from_buf(unsigned char* buf, int n);/* Glenn Pearson adds */
void cio_write_from_buf(unsigned char* dest_buf, int n);/* Glenn Pearson adds */
#endif