comparison: src/protocols/jabber/str.c
src/protocols/jabber/str.c
- changeset 3717
- 2fc0789e04e8
- parent 3127
- 4213ad5b231c
equal
deleted
inserted
replaced
| 38 * |
38 * |
| 39 * |
39 * |
| 40 * --------------------------------------------------------------------------*/ |
40 * --------------------------------------------------------------------------*/ |
| 41 |
41 |
| 42 #include "lib.h" |
42 #include "lib.h" |
| |
43 |
| |
44 #ifdef _WIN32 |
| |
45 #include "win32dep.h" |
| |
46 #endif |
| 43 |
47 |
| 44 char *j_strdup(const char *str) |
48 char *j_strdup(const char *str) |
| 45 { |
49 { |
| 46 if(str == NULL) |
50 if(str == NULL) |
| 47 return NULL; |
51 return NULL; |