| 38257:1a294a6d2a57 | 38258:9a6551eba09c |
|---|---|
| 159 */ | 159 */ |
| 160 char *gg_get_line(char **ptr) | 160 char *gg_get_line(char **ptr) |
| 161 { | 161 { |
| 162 char *foo, *res; | 162 char *foo, *res; |
| 163 | 163 |
| 164 if (!ptr || !*ptr || !strcmp(*ptr, "")) | 164 if (!ptr || !*ptr || purple_strequal(*ptr, "")) |
| 165 return NULL; | 165 return NULL; |
| 166 | 166 |
| 167 res = *ptr; | 167 res = *ptr; |
| 168 | 168 |
| 169 if (!(foo = strchr(*ptr, '\n'))) | 169 if (!(foo = strchr(*ptr, '\n'))) |