We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d44d6 commit a7ed869Copy full SHA for a7ed869
phlib/include/phbasesup.h
@@ -1257,6 +1257,22 @@ PhCreateString3(
1257
_In_opt_ PPH_STRINGREF TrimCharSet
1258
);
1259
1260
+FORCEINLINE
1261
+PPH_STRING
1262
+NTAPI
1263
+PhTrimStringZ(
1264
+ _In_ PPH_STRINGREF String,
1265
+ _In_ ULONG Flags,
1266
+ _In_ PWSTR TrimCharSet
1267
+ )
1268
+{
1269
+ PH_STRINGREF string;
1270
+
1271
+ PhInitializeStringRef(&string, TrimCharSet);
1272
1273
+ return PhCreateString3(String, Flags, &string);
1274
+}
1275
1276
FORCEINLINE
1277
WCHAR
1278
NTAPI
0 commit comments