mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-08-17 07:58:37 +02:00
14 lines
273 B
C
14 lines
273 B
C
#pragma once
|
|
void socket_tests();
|
|
void file_tests();
|
|
void miscellaneous_tests();
|
|
|
|
char *dup_str(char *inStr);
|
|
void delete_dir_recursive(char *full_dir_path);
|
|
|
|
#define ASSERT_HANDLE(handle) \
|
|
{\
|
|
ASSERT_PTR_NE(handle, INVALID_HANDLE_VALUE); \
|
|
ASSERT_PTR_NE(handle, 0); \
|
|
}
|