Mercurial > defical
comparison defical-c/src/basic/inefficient.h @ 0:ebed2bd0d300
Initial import from svn. History be damned.
author | Edho P. Arief <me@myconan.net> |
---|---|
date | Fri, 02 Apr 2010 23:11:57 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ebed2bd0d300 |
---|---|
1 #ifdef _MSC_VER | |
2 #include <windows.h> | |
3 #include "../msvc/stdint.h" | |
4 #else | |
5 #include <stdint.h> | |
6 #include <sys/time.h> | |
7 #endif | |
8 #include <time.h> | |
9 #include <string> | |
10 #include <stdio.h> | |
11 using namespace std; | |
12 | |
13 string uint32_t_to_str(uint32_t myint); | |
14 double stdev(uint32_t * numbers); | |
15 | |
16 class gettime; | |
17 | |
18 class gettime | |
19 { | |
20 public: | |
21 char time_v[20],time_s[16]; | |
22 gettime(); | |
23 }; |