equal
deleted
inserted
replaced
29 #include <stdio.h> |
29 #include <stdio.h> |
30 #include <string.h> |
30 #include <string.h> |
31 |
31 |
32 QT_BEGIN_NAMESPACE |
32 QT_BEGIN_NAMESPACE |
33 |
33 |
34 extern double qstrtod(const char *s00, char const **se, bool *ok); |
34 Q_DECL_IMPORT extern double qstrtod(const char *s00, char const **se, bool *ok); |
35 |
35 |
36 #define shiftWindowsLineBreak() \ |
36 #define shiftWindowsLineBreak() \ |
37 do { \ |
37 do { \ |
38 if (((current == '\r') && (next1 == '\n')) \ |
38 if (((current == '\r') && (next1 == '\n')) \ |
39 || ((current == '\n') && (next1 == '\r'))) { \ |
39 || ((current == '\n') && (next1 == '\r'))) { \ |