fix incorrect documentation of cxBufferEof()

Thu, 23 Nov 2023 23:41:40 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 23 Nov 2023 23:41:40 +0100
changeset 757
49ceea78fce7
parent 756
0b635553b86a
child 758
6cd62ce7e353

fix incorrect documentation of cxBufferEof()

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
src/cx/buffer.h file | annotate | diff | comparison | revisions
     1.1 --- a/configure	Thu Nov 23 23:35:51 2023 +0100
     1.2 +++ b/configure	Thu Nov 23 23:41:40 2023 +0100
     1.3 @@ -440,7 +440,7 @@
     1.4  
     1.5          cat >> "$TEMP_DIR/make.mk" << __EOF__
     1.6  # library version
     1.7 -VERSION=3.0.0
     1.8 +VERSION=3.0.1
     1.9  LIBVERSION=4.0.0
    1.10  LIBVERSION_MAJOR=4
    1.11  
     2.1 --- a/make/project.xml	Thu Nov 23 23:35:51 2023 +0100
     2.2 +++ b/make/project.xml	Thu Nov 23 23:41:40 2023 +0100
     2.3 @@ -10,7 +10,7 @@
     2.4  	<dependency>
     2.5  		<make>
     2.6  # library version
     2.7 -VERSION=3.0.0
     2.8 +VERSION=3.0.1
     2.9  LIBVERSION=4.0.0
    2.10  LIBVERSION_MAJOR=4
    2.11  
     3.1 --- a/src/cx/buffer.h	Thu Nov 23 23:35:51 2023 +0100
     3.2 +++ b/src/cx/buffer.h	Thu Nov 23 23:41:40 2023 +0100
     3.3 @@ -319,11 +319,11 @@
     3.4  void cxBufferClear(CxBuffer *buffer);
     3.5  
     3.6  /**
     3.7 - * Tests, if the buffer position has exceeded the buffer capacity.
     3.8 + * Tests, if the buffer position has exceeded the buffer size.
     3.9   *
    3.10   * @param buffer the buffer to test
    3.11   * @return non-zero, if the current buffer position has exceeded the last
    3.12 - * available byte of the buffer.
    3.13 + * byte of the buffer's contents.
    3.14   */
    3.15  __attribute__((__nonnull__))
    3.16  int cxBufferEof(CxBuffer const *buffer);

mercurial