-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_wassert.c
43 lines (25 loc) · 879 Bytes
/
_wassert.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
_wassert.c
Abstract:
Implementation of the Standard C function
Author:
Kilian Kegel
--*/
#include <CdeServices.h>
extern int printf(const char* pszFormat, ...);
void __cdecl _wassert(wchar_t const* pwcsExpession, wchar_t const* pwcsFile, unsigned dwLine) {
if (CDE_REMOVEPATHFROMFILENAME) {
int i = 0;
while (pwcsFile[i++] != '\0')
;
while (i > 0 && pwcsFile[i - 1] != '\\' && pwcsFile[i - 1] != '/')
i--;
pwcsFile = &pwcsFile[i];
}
printf("Assertion failed: %S, file %S, line %d\n", pwcsExpession, pwcsFile, dwLine);
}