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
Merge requests
!259
extern c
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
extern c
feat-4515-4
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Constantin P.
requested to merge
feat-4515-4
into
master
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8271f218
1 commit,
4 years ago
1 file
+
7
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dap-sdk/core/include/dap_strfuncs.h
+
7
−
0
Options
@@ -36,6 +36,10 @@
#undef clamp
#define clamp(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
#ifdef __cplusplus
extern
"C"
{
#endif
#ifdef _WIN32
char
*
strptime
(
char
*
buff
,
const
char
*
fmt
,
struct
tm
*
tm
);
#endif
@@ -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
);
#endif
#ifdef __cplusplus
}
#endif
Loading