Changeset 651560f
- Timestamp:
- Jun 1, 2003, 10:33:32 PM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- aa5f725
- Parents:
- 75e3879
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
aim.c
r3abf28b r651560f 186 186 { 187 187 return(0); 188 } 189 190 /* caller must free the return */ 191 char *owl_aim_normalize_screenname(char *in) { 192 char *out; 193 int i, j, k; 194 195 j=strlen(in); 196 out=owl_malloc(j+30); 197 k=0; 198 for (i=0; i<j; i++) { 199 if (in[i]!=' ') { 200 out[k]=in[i]; 201 k++; 202 } 203 } 204 out[k]='\0'; 205 return(out); 188 206 } 189 207 … … 1270 1288 1271 1289 if (args->icbmflags & AIM_IMFLAGS_HASICON) { 1272 aim_send_im(sess, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon");1290 /* aim_send_im(sess, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon"); */ 1273 1291 /* printf("icbm: their icon: iconstamp = %ld, iconlen = 0x%08lx, iconsum = 0x%04x\n", args->iconstamp, args->iconlen, args->iconsum); */ 1274 1292 } -
commands.c
r3abf28b r651560f 1381 1381 owl_function_makemsg("Not enough arguments to the aimwrite command."); 1382 1382 } else { 1383 tmpbuff =owl_strdup(buff);1383 tmpbuff=owl_strdup(buff); 1384 1384 owl_function_aimwrite_setup(tmpbuff); 1385 1385 owl_global_set_buffercommand(&g, tmpbuff); -
owl_prototypes.h
r3abf28b r651560f 7 7 extern void owl_aim_chat_leave(char *chatroom); 8 8 extern int owl_aim_chat_sendmsg(char *chatroom, char *msg); 9 extern char *owl_aim_normalize_screenname(char *in); 9 10 extern int owl_aim_process_events(); 10 11 extern int faimtest_flapversion(aim_session_t *sess, aim_frame_t *fr, ...);
Note: See TracChangeset
for help on using the changeset viewer.