Dolda2000 GitWeb
/
utils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
acmecert: Added a simple built-in DER decoder to not have to rely on external openssl.
[utils.git]
/
trunc.c
1
#include <stdlib.h>
2
#include <stdio.h>
3
#include <unistd.h>
4
5
int main(int argc, char **argv)
6
{
7
if(argc < 3) {
8
fprintf(stderr, "usage: trunc FILE SIZE\n");
9
exit(1);
10
}
11
if(truncate(argv[1], atoll(argv[2]))) {
12
perror(argv[1]);
13
exit(1);
14
}
15
return(0);
16
}
17
18
/*
19
* Local Variables:
20
* compile-command: "gcc -Wall -g -o trunc trunc.c -D_FILE_OFFSET_BITS=64"
21
* End:
22
*/