repo.or.cz
/
rofl0r-kripto.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
status update, probably last commit
[rofl0r-kripto.git]
/
test
/
test.h
blob
c0e8009d16be6b41481398d09835f4723d37b12f
1
#ifndef TEST_H
2
#define TEST_H
3
4
extern
int
test_result
;
5
6
extern
void
test_pass
(
const char
*
test
);
7
8
extern
void
test_fail
(
const char
*
test
);
9
10
extern
void
test_error
(
const char
*
test
);
11
12
extern
void
test_cmp
13
(
14
const char
*
test
,
15
const void
*
s1
,
16
const void
*
s2
,
17
size_t
len
18
);
19
20
#endif