summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/core.h2
-rw-r--r--include/state.h2
-rw-r--r--include/text.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/core.h b/include/core.h
index ddbf442..9a9a144 100644
--- a/include/core.h
+++ b/include/core.h
@@ -2,7 +2,7 @@
#include "lua_core.h"
-void unloadBuffer( Buffer *buffer );
+void unloadBuffer( Buffer* buffer );
/* Window-related functions. */
int lcoreCloseWindow( lua_State* L );
int lcoreIsWindowReady( lua_State* L );
diff --git a/include/state.h b/include/state.h
index f38aaf1..d657034 100644
--- a/include/state.h
+++ b/include/state.h
@@ -42,7 +42,7 @@ typedef struct {
#endif
} State;
-extern State *state;
+extern State* state;
bool stateInit( int argn, const char** argc, const char* exePath );
void stateInitInterpret( int argn, const char** argc );
diff --git a/include/text.h b/include/text.h
index cd78f4a..b1cc549 100644
--- a/include/text.h
+++ b/include/text.h
@@ -1,6 +1,6 @@
#pragma once
-void unloadGlyphInfo( GlyphInfo *glyph );
+void unloadGlyphInfo( GlyphInfo* glyph );
/* Font loading/unloading functions. */
int ltextGetFontDefault( lua_State* L );
int ltextLoadFont( lua_State* L );