- Timestamp:
- 2010-03-17T15:15:19Z (15 years ago)
- Branches:
- master
- Children:
- 60e4df3
- Parents:
- 1c3008a (diff), f9928cb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/misc.c
r1c3008a re8c8d00 34 34 #include "nogaim.h" 35 35 #include "base64.h" 36 #include "md5.h" 36 37 #include <stdio.h> 37 38 #include <stdlib.h> … … 89 90 { "gt", ">" }, 90 91 { "amp", "&" }, 92 { "apos", "'" }, 91 93 { "quot", "\"" }, 92 94 { "aacute", "á" }, … … 522 524 523 525 /* Word wrapping. Yes, I know this isn't UTF-8 clean. I'm willing to take the risk. */ 524 char *word_wrap( c har *msg, int line_len )526 char *word_wrap( const char *msg, int line_len ) 525 527 { 526 528 GString *ret = g_string_sized_new( strlen( msg ) + 16 ); -
lib/misc.h
r1c3008a re8c8d00 62 62 G_MODULE_EXPORT struct ns_srv_reply *srv_lookup( char *service, char *protocol, char *domain ); 63 63 64 G_MODULE_EXPORT char *word_wrap( c har *msg, int line_len );64 G_MODULE_EXPORT char *word_wrap( const char *msg, int line_len ); 65 65 66 66 G_MODULE_EXPORT gboolean ssl_sockerr_again( void *ssl );
Note: See TracChangeset
for help on using the changeset viewer.