projects
/
goodguy
/
cinelerra.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
version update
[goodguy/cinelerra.git]
/
cinelerra-5.1
/
db
/
utils
/
new_db.C
1
#include <stdio.h>
2
#include <stdint.h>
3
4
#include "s.C"
5
6
int main(int ac, char **av)
7
{
8
if( ac < 2 ) { printf("usage: %s <new>.db\n",av[0]); exit(1); }
9
theDb *db = new theDb();
10
remove(av[1]);
11
db->create(av[1]);
12
delete db;
13
return 0;
14
}
15