comparison plugins/perl/common/Stringref.xs @ 12773:96f9b4798012

[gaim-migrate @ 15120] Some whitespace stuff so it doesn't clutter up later commits. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 09 Jan 2006 04:42:25 +0000
parents 6fd82071a7b8
children
comparison
equal deleted inserted replaced
12772:26702cf30ea5 12773:96f9b4798012
1 #include "module.h" 1 #include "module.h"
2 2
3 MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_ 3 MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_
4 PROTOTYPES: ENABLE 4 PROTOTYPES: ENABLE
5 5
6 int 6 int
7 gaim_stringref_cmp(s1, s2) 7 gaim_stringref_cmp(s1, s2)
8 Gaim::Stringref s1 8 Gaim::Stringref s1
9 Gaim::Stringref s2 9 Gaim::Stringref s2
10 10
11 size_t 11 size_t
12 gaim_stringref_len(stringref) 12 gaim_stringref_len(stringref)
13 Gaim::Stringref stringref 13 Gaim::Stringref stringref
14 14
15 Gaim::Stringref 15 Gaim::Stringref
16 gaim_stringref_new(class, value) 16 gaim_stringref_new(class, value)
22 gaim_stringref_new_noref(class, value) 22 gaim_stringref_new_noref(class, value)
23 const char *value 23 const char *value
24 C_ARGS: 24 C_ARGS:
25 value 25 value
26 26
27
28
29 Gaim::Stringref 27 Gaim::Stringref
30 gaim_stringref_ref(stringref) 28 gaim_stringref_ref(stringref)
31 Gaim::Stringref stringref 29 Gaim::Stringref stringref
32 30
33 void 31 void
34 gaim_stringref_unref(stringref) 32 gaim_stringref_unref(stringref)
35 Gaim::Stringref stringref 33 Gaim::Stringref stringref
36 34
37 const char * 35 const char *
38 gaim_stringref_value(stringref) 36 gaim_stringref_value(stringref)
39 Gaim::Stringref stringref 37 Gaim::Stringref stringref
40