summaryrefslogtreecommitdiff
path: root/support/dktools/test-deldirwc.ctr
blob: 4bf55490e86487bdcc27c4c0dfe3d4fcdc8ddfc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#include "dk4conf.h"

#include <stdio.h>

#include "dk4deldirwc.h"


int main(void)
{
  int		 exval	= 1;
  if (0 != dk4delete_directory_wc(L".\\%SystemDrive%", NULL)) {
    exval = 0;
  }
  return exval;
}