Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
}
}
-/** @def DBUS_IS_DIR_SEPARATOR(c)
- * macro for checking if character c is a patch separator
- *
- * @todo move to a header file so that others can use this too
- */
-#ifdef DBUS_WIN
-#define DBUS_IS_DIR_SEPARATOR(c) (c == '\\' || c == '/')
-#else
-#define DBUS_IS_DIR_SEPARATOR(c) (c == '/')
-#endif
-
-/**
+/**
remove source root from file path
the source root is determined by
*/
# define _DBUS_END_IGNORE_LEAKS do { } while (0)
#endif
+/** @def DBUS_IS_DIR_SEPARATOR(c)
+ * macro for checking if character c is a path separator
+ */
+#ifdef DBUS_WIN
+#define DBUS_IS_DIR_SEPARATOR(c) (c == '\\' || c == '/')
+#else
+#define DBUS_IS_DIR_SEPARATOR(c) (c == '/')
+#endif
+
DBUS_END_DECLS
#endif /* DBUS_INTERNALS_H */