Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
8d47821e
Commit
8d47821e
authored
May 25, 2019
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DUMP_ASC 只打印可打印字符[0x20, 0x7f)
parent
8c4a6b7b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
log2.h
jlib/log2.h
+6
-1
test.cpp
test/test/test.cpp
+13
-0
test.vcxproj
test/test/test.vcxproj
+1
-1
No files found.
jlib/log2.h
View file @
8d47821e
...
...
@@ -192,7 +192,12 @@ inline void dump_asc(const void* buff, size_t buff_len, bool seperate_with_space
}
for
(
size_t
i
=
0
;
i
<
buff_len
;
i
++
)
{
std
::
sprintf
(
c
,
"%c"
,
reinterpret_cast
<
const
char
*>
(
buff
)[
i
]);
if
(
std
::
isprint
(
reinterpret_cast
<
const
char
*>
(
buff
)[
i
]))
{
std
::
sprintf
(
c
,
"%c"
,
reinterpret_cast
<
const
char
*>
(
buff
)[
i
]);
}
else
{
std
::
sprintf
(
c
,
"$"
);
}
if
(
seperate_with_space
)
{
std
::
strcat
(
c
,
" "
);
}
...
...
test/test/test.cpp
View file @
8d47821e
...
...
@@ -18,6 +18,19 @@
int
main
()
{
jlib
::
init_logger
(
L"test"
);
char
data
[
0x80
-
0x20
]
=
{};
for
(
int
i
=
0x20
;
i
<
0x80
;
i
++
)
{
data
[
i
-
0x20
]
=
i
;
}
JLOG_ASC
(
data
,
sizeof
(
data
));
JLOG_HEX
(
data
,
sizeof
(
data
));
data
[
0
]
=
31
;
JLOG_ASC
(
data
,
sizeof
(
data
));
return
0
;
}
...
...
test/test/test.vcxproj
View file @
8d47821e
...
...
@@ -22,7 +22,7 @@
<ProjectGuid>
{155F525A-FA2F-471F-A2DF-9B77E7CCCFA5}
</ProjectGuid>
<Keyword>
Win32Proj
</Keyword>
<RootNamespace>
test
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0.1
6299
.0
</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>
10.0.1
7763
.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment