Skip to content

Commit

Permalink
Remove extern keyword in function declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
utelle committed May 28, 2024
1 parent 8f96357 commit 41b3c6d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/sqlite3mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ void sqlite3mc_shutdown(void);
#include <windows.h>

/* SQLite functions only needed on Win32 */
extern SQLITE_API void sqlite3_win32_write_debug(const char*, int);
extern SQLITE_API char *sqlite3_win32_unicode_to_utf8(LPCWSTR);
extern SQLITE_API char *sqlite3_win32_mbcs_to_utf8(const char*);
extern SQLITE_API char *sqlite3_win32_mbcs_to_utf8_v2(const char*, int);
extern SQLITE_API char *sqlite3_win32_utf8_to_mbcs(const char*);
extern SQLITE_API char *sqlite3_win32_utf8_to_mbcs_v2(const char*, int);
extern SQLITE_API LPWSTR sqlite3_win32_utf8_to_unicode(const char*);
SQLITE_API void sqlite3_win32_write_debug(const char*, int);
SQLITE_API char *sqlite3_win32_unicode_to_utf8(LPCWSTR);
SQLITE_API char *sqlite3_win32_mbcs_to_utf8(const char*);
SQLITE_API char *sqlite3_win32_mbcs_to_utf8_v2(const char*, int);
SQLITE_API char *sqlite3_win32_utf8_to_mbcs(const char*);
SQLITE_API char *sqlite3_win32_utf8_to_mbcs_v2(const char*, int);
SQLITE_API LPWSTR sqlite3_win32_utf8_to_unicode(const char*);
#endif

/*
Expand Down

0 comments on commit 41b3c6d

Please sign in to comment.