| 1054 * |
1054 * |
| 1055 * Returns: TRUE if p is a prefix of s, otherwise FALSE. |
1055 * Returns: TRUE if p is a prefix of s, otherwise FALSE. |
| 1056 */ |
1056 */ |
| 1057 gboolean purple_str_has_prefix(const char *s, const char *p); |
1057 gboolean purple_str_has_prefix(const char *s, const char *p); |
| 1058 |
1058 |
| |
1059 gboolean purple_str_has_caseprefix(const gchar *s, const gchar *p); |
| |
1060 |
| 1059 /** |
1061 /** |
| 1060 * purple_str_has_suffix: |
1062 * purple_str_has_suffix: |
| 1061 * @s: The string to check. |
1063 * @s: The string to check. |
| 1062 * @x: The suffix in question. |
1064 * @x: The suffix in question. |
| 1063 * |
1065 * |