diff options
Diffstat (limited to 'SD-VBS/common/c/uiFreeHandle.c')
-rw-r--r-- | SD-VBS/common/c/uiFreeHandle.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/SD-VBS/common/c/uiFreeHandle.c b/SD-VBS/common/c/uiFreeHandle.c new file mode 100644 index 0000000..ce64ad9 --- /dev/null +++ b/SD-VBS/common/c/uiFreeHandle.c | |||
@@ -0,0 +1,15 @@ | |||
1 | /******************************** | ||
2 | Author: Sravanthi Kota Venkata | ||
3 | ********************************/ | ||
4 | |||
5 | #include <stdio.h> | ||
6 | #include <stdlib.h> | ||
7 | #include "sdvbs_common.h" | ||
8 | |||
9 | void uiFreeHandle(UI2D* out) | ||
10 | { | ||
11 | free(out); | ||
12 | |||
13 | return; | ||
14 | } | ||
15 | |||