option '-s' run srand(getpid())

This commit is contained in:
tth 2018-12-05 19:15:01 +01:00
부모 495a7cf3cf
커밋 474814ad11
1개의 변경된 파일7개의 추가작업 그리고 5개의 파일을 삭제

파일 보기

@ -4,6 +4,7 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include "funcs.h"
@ -15,16 +16,17 @@ int main(int argc, char *argv[])
{
int opt;
while ((opt = getopt(argc, argv, "v")) != -1) {
while ((opt = getopt(argc, argv, "vs")) != -1) {
switch (opt) {
case 'v': verbosity++; break;
default: break;
case 'v': verbosity++; break;
case 's': srand(getpid()); break;
default: break;
}
}
if (verbosity > 1)
if (verbosity > 1) {
fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__);
}
printf("%f %d\n", dtime(), random1000(0));