Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cellframe-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
20
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
cellframe-sdk
Commits
8271f218
Commit
8271f218
authored
4 years ago
by
Constantin Papizh
Browse files
Options
Downloads
Patches
Plain Diff
extern c
parent
da0771d2
No related branches found
No related tags found
2 merge requests
!263
Master
,
!259
extern c
Pipeline
#6631
passed with stage
Stage: analyze
in 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dap-sdk/core/include/dap_strfuncs.h
+7
-0
7 additions, 0 deletions
dap-sdk/core/include/dap_strfuncs.h
with
7 additions
and
0 deletions
dap-sdk/core/include/dap_strfuncs.h
+
7
−
0
View file @
8271f218
...
@@ -36,6 +36,10 @@
...
@@ -36,6 +36,10 @@
#undef clamp
#undef clamp
#define clamp(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
#define clamp(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
#ifdef __cplusplus
extern
"C"
{
#endif
#ifdef _WIN32
#ifdef _WIN32
char
*
strptime
(
char
*
buff
,
const
char
*
fmt
,
struct
tm
*
tm
);
char
*
strptime
(
char
*
buff
,
const
char
*
fmt
,
struct
tm
*
tm
);
#endif
#endif
...
@@ -113,3 +117,6 @@ char *dap_itoa128(char *a_str, int128_t a_value, int a_base);
...
@@ -113,3 +117,6 @@ char *dap_itoa128(char *a_str, int128_t a_value, int a_base);
char
*
_strndup
(
const
char
*
str
,
unsigned
long
len
);
char
*
_strndup
(
const
char
*
str
,
unsigned
long
len
);
#endif
#endif
#ifdef __cplusplus
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment