comparison src/protocols/oscar/tlv.c @ 10991:1798ad0be460

[gaim-migrate @ 12829] Rename aim_tlvlist_add_string to aim_tlvlist_add_str. Yes, that's one of the functions I just added. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 09 Jun 2005 04:38:10 +0000
parents 8d74ae785a46
children b6ca6d3c5332
comparison
equal deleted inserted replaced
10990:8d74ae785a46 10991:1798ad0be460
468 * @param list Destination chain. 468 * @param list Destination chain.
469 * @param type TLV type to add. 469 * @param type TLV type to add.
470 * @param value Value to add. 470 * @param value Value to add.
471 * @return The size of the value added. 471 * @return The size of the value added.
472 */ 472 */
473 faim_internal int aim_tlvlist_add_string(aim_tlvlist_t **list, const fu16_t type, const char *value) 473 faim_internal int aim_tlvlist_add_str(aim_tlvlist_t **list, const fu16_t type, const char *value)
474 { 474 {
475 return aim_tlvlist_add_raw(list, type, strlen(value), (fu8_t *)value); 475 return aim_tlvlist_add_raw(list, type, strlen(value), (fu8_t *)value);
476 } 476 }
477 477
478 /** 478 /**