Index: profile.h
===================================================================
--- profile.h	(revision 0)
+++ profile.h	(revision 1)
@@ -0,0 +1,29 @@
+#ifndef _PROFILE_H
+#define _PROFILE_H
+#ifdef DEBUG_PROFILE
+
+/*=
+Profiling (sort of ...)
+3500
+**/
+
+// Introduction
+/**
+You will find here a few functions for a **very simple** profiling.
+For anything else than a quick time measure, use real profiling tools.
+Note: Use only one "profiler" at a time.
+**/
+
+extern unsigned long raydium_profile_timer;
+extern void raydium_profile_start(void);
+/**
+Starts measure.
+**/
+
+extern void raydium_profile_end(char *tag);
+/**
+Stops measure and displays result using ##tag## string.
+**/
+
+#endif
+#endif