summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2012-02-27 00:09:37 +0000
committererdgeist <>2012-02-27 00:09:37 +0000
commitbbc76bdf080f17d8d55a8bfb2c8170bbcdf48739 (patch)
tree6444480e5a930d1c9a80f72bfa12e72447a04d39
parente5e7c3786d07e6c3979f11ab8908dab9f4dd344b (diff)
declare configure int in vchat.h
-rwxr-xr-xvchat-user.c2
-rw-r--r--vchat-user.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/vchat-user.c b/vchat-user.c
index cd0df14..45b6b05 100755
--- a/vchat-user.c
+++ b/vchat-user.c
@@ -28,7 +28,7 @@ static user *g_users; //< all users, incl self
28static size_t g_users_count; //< number of users in list 28static size_t g_users_count; //< number of users in list
29static char *g_nick; //< own nick 29static char *g_nick; //< own nick
30static int g_channel; //< own channel 30static int g_channel; //< own channel
31int ul_case_first = 0; 31unsigned int ul_case_first = 0;
32 32
33static int ul_nick_lookup( const char *nick, int *exact_match ) { 33static int ul_nick_lookup( const char *nick, int *exact_match ) {
34 int i; 34 int i;
diff --git a/vchat-user.h b/vchat-user.h
index a731ad6..41b51da 100644
--- a/vchat-user.h
+++ b/vchat-user.h
@@ -9,6 +9,7 @@
9#define __VCHAT_USER_H__ 9#define __VCHAT_USER_H__
10 10
11extern char *vchat_us_version; 11extern char *vchat_us_version;
12extern unsigned int ul_case_first;
12 13
13/* own nick and channel */ 14/* own nick and channel */
14void own_channel_set( int channel ); 15void own_channel_set( int channel );