wip
This commit is contained in:
20
single.c
Normal file
20
single.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/* single.c
|
||||
*
|
||||
* Init to be called before single file
|
||||
* creation as a final product.
|
||||
*
|
||||
* written by vx-clutch
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "file.h"
|
||||
#include "single.h"
|
||||
#include "usage.h"
|
||||
|
||||
int single_init(char *src)
|
||||
{
|
||||
if (ffexist(src))
|
||||
die("%s already exists", src);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user