Skip to content

Commit

Permalink
feat: 0.3.6 Indent all sources (#41)
Browse files Browse the repository at this point in the history
* chore: indent all source files

  indent -i4 -linux for all source files
  • Loading branch information
jgabaut committed Nov 6, 2023
1 parent 5f033ce commit 2207768
Show file tree
Hide file tree
Showing 11 changed files with 2,840 additions and 2,453 deletions.
1 change: 1 addition & 0 deletions bin/stego.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ tests# tests folder name
0.3.3# Fix Koliseo_Temp reglist_kls having a static size
0.3.4# Add kls_maxRegions_KLS_BASIC, handle KLS_BASIC in kls_insord_p(), fix list macros args
0.3.5# Shush stderr message, return null on bad kls_temp_start()
0.3.6# Run indent -i4 -linux on all source files
4 changes: 4 additions & 0 deletions bin/v0.3.6/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir
*
!.gitignore
!static
1 change: 1 addition & 0 deletions bin/v0.3.6/static
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Define the package name and version
AC_INIT([koliseo], [0.3.5], [[email protected]])
AC_INIT([koliseo], [0.3.6], [[email protected]])

# Verify automake version and enable foreign option
AM_INIT_AUTOMAKE([foreign -Wall])
Expand Down Expand Up @@ -48,7 +48,7 @@ fi
# Set a default version number if not specified externally
AC_ARG_VAR([VERSION], [Version number])
if test -z "$VERSION"; then
VERSION="0.3.5"
VERSION="0.3.6"
fi

# Output variables to the config.h header
Expand Down
2 changes: 1 addition & 1 deletion docs/koliseo.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "koliseo"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "0.3.5"
PROJECT_NUMBER = "0.3.6"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4,615 changes: 2,486 additions & 2,129 deletions src/koliseo.c

Large diffs are not rendered by default.

200 changes: 105 additions & 95 deletions src/koliseo.h

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/amboso.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "amboso.h"

char* getAmbosoVersion(void) {
char *getAmbosoVersion(void)
{
return AMBOSO_CV;
}
2 changes: 1 addition & 1 deletion static/amboso.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
#ifndef AMBOSO_H
#define AMBOSO_H
#define AMBOSO_CV "1.6.6"
char* getAmbosoVersion(void);
char *getAmbosoVersion(void);
#endif
4 changes: 2 additions & 2 deletions static/basic_example.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ int main(void)
{
//Init the arena and provide an optional file path for internal kls logging.
//If KLS_DEBUG_CORE is not defined for the library, a warning will be displayed and no logging is done.
Koliseo* kls = kls_new_traced(KLS_DEFAULT_SIZE,"./static/debug_log.txt");
Koliseo *kls = kls_new_traced(KLS_DEFAULT_SIZE, "./static/debug_log.txt");

//Use the arena (see demo for Koliseo_Temp usage)
Example* e = KLS_PUSH(kls,Example,1);
Example *e = KLS_PUSH(kls, Example, 1);
e->val = 42;

//Show contents to stdout
Expand Down
Loading

0 comments on commit 2207768

Please sign in to comment.