repo.or.cz
/
tomato
/
davidwu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct PPTP server firewall rules chain.
[tomato/davidwu.git]
/
release
/
src
/
router
/
layer7
/
protocols
/
testing
/
randchars.c
blob
149c9c1aa272f41f8da74106b060c2c6185a6a86
1
#include <stdio.h>
2
#include <ctype.h>
3
#include <stdlib.h>
4
#include <time.h>
5
#include <unistd.h>
6
7
int
main
()
8
{
9
char
c
;
10
srand
(
time
(
NULL
) *
getpid
());
11
12
while
(
1
)
13
printf
(
"%c"
, (
char
)
rand
()%
256
);
14
15
return
0
;
16
}