-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstring-utils.c
67 lines (51 loc) · 1.81 KB
/
string-utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* File: string-utils.c
Copyright (C) 2013 David Hauweele <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
void fill_with_random(unsigned char *buf, unsigned int size)
{
int i;
struct timeval tv;
unsigned int seed;
gettimeofday(&tv, NULL);
/* David's magic hash */
seed = (tv.tv_sec + (tv.tv_sec << 11)) ^ \
(tv.tv_usec + (tv.tv_usec << 17));
srand(seed);
for(i = 0 ; i < size ; i++)
buf[i] = rand() % 0xff;
}
const char * tv_to_str(const struct timeval *tv)
{
static char buf[sizeof("111.111 minutes")];
if(tv->tv_sec >= 86400)
return "> 1 day";
else if(tv->tv_sec >= 3600)
sprintf(buf, "%3.3f hours", (double)tv->tv_sec / 3600);
else if(tv->tv_sec >= 60)
sprintf(buf, "%3.3f minutes", (double)tv->tv_sec / 60);
else if(tv->tv_sec > 0)
sprintf(buf, "%ld.%03ld s", tv->tv_sec, tv->tv_usec / 1000);
else if(tv->tv_usec > 1000)
sprintf(buf, "%ld.%03ld ms", tv->tv_usec / 1000, tv->tv_usec % 1000);
else
sprintf(buf, "%ld us", tv->tv_usec);
return buf;
}
void * memdup(const void *buf, size_t size)
{
void *new_buf = malloc(size);
return memcpy(new_buf, buf, size);
}