Skip to content

Commit

Permalink
Cleanup tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
chpock committed Oct 13, 2024
1 parent 81e61ec commit 947c066
Show file tree
Hide file tree
Showing 16 changed files with 1,551 additions and 1,548 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-13 Konstantin Kushnir <[email protected]>
* Cleanup sources

2024-10-12 Konstantin Kushnir <[email protected]>
* Add a fileset feature to VFS
* Allow to link with zlib directly (without Tcl layer)
Expand Down
8 changes: 4 additions & 4 deletions generic/bindata.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ static Tcl_Obj *CookfsBinaryDataCreateAddress(void *address);
*
* Cookfs_InitBinaryDataCmd --
*
* Initializes binary data command in specific
* Tcl interpreter
* Initializes binary data command in specific
* Tcl interpreter
*
* Results:
* TCL_OK on success; TCL_ERROR on error
* TCL_OK on success; TCL_ERROR on error
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand Down
48 changes: 24 additions & 24 deletions generic/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
*
* Cookfs_Binary2Int --
*
* Converts count integers from platform independant (high endian)
* stored at input into an array of platform dependant integers
* at output.
* Converts count integers from platform independant (high endian)
* stored at input into an array of platform dependant integers
* at output.
*
* Results:
* Pointer to bytes following count integers at input:
* result = input + count * 4
* Pointer to bytes following count integers at input:
* result = input + count * 4
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand Down Expand Up @@ -54,16 +54,16 @@ unsigned char *Cookfs_Binary2Int(unsigned char *input, int *output, int count) {
*
* Cookfs_Int2Binary --
*
* Converts count integers from platform dependant stored at
* input into an array of platform independant (high endian)
* integers at output.
* Converts count integers from platform dependant stored at
* input into an array of platform independant (high endian)
* integers at output.
*
* Results:
* Pointer to output following count integers stored at output:
* result = output + count * 4
* Pointer to output following count integers stored at output:
* result = output + count * 4
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand All @@ -87,16 +87,16 @@ unsigned char *Cookfs_Int2Binary(int *input, unsigned char *output, int count) {
*
* Cookfs_Binary2WideInt --
*
* Converts count wide integers from platform independant
* (high endian) stored at input into an array of platform
* dependant wide integers at output.
* Converts count wide integers from platform independant
* (high endian) stored at input into an array of platform
* dependant wide integers at output.
*
* Results:
* Pointer to bytes following count wide integers at input:
* result = input + count * 8
* Pointer to bytes following count wide integers at input:
* result = input + count * 8
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand Down Expand Up @@ -125,16 +125,16 @@ unsigned char *Cookfs_Binary2WideInt(unsigned char *input, Tcl_WideInt *output,
*
* Cookfs_WideInt2Binary --
*
* Converts count wide integers from platform dependant stored at
* input into an array of platform independant (high endian)
* wide integers at output.
* Converts count wide integers from platform dependant stored at
* input into an array of platform independant (high endian)
* wide integers at output.
*
* Results:
* Pointer to output following count wide integers stored at output:
* result = output + count * 8
* Pointer to output following count wide integers stored at output:
* result = output + count * 8
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand Down
6 changes: 3 additions & 3 deletions generic/cookfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
*
* Cookfs_Init --
*
* Initializes Cookfs C layer in a Tcl interpreter.
* Initializes Cookfs C layer in a Tcl interpreter.
*
* Results:
* TCL_OK on success; TCL_ERROR otherwise
* TCL_OK on success; TCL_ERROR otherwise
*
* Side effects:
* None
* None
*
*----------------------------------------------------------------------
*/
Expand Down
Loading

0 comments on commit 947c066

Please sign in to comment.