mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-24 14:17:22 +08:00
Merge pull request #1630 from RT-Thread/feature_strdup
[Kernel] Add strdup for armcc
This commit is contained in:
commit
18bf098087
@ -549,6 +549,10 @@ rt_int32_t rt_strncmp(const char *cs, const char *ct, rt_ubase_t count);
|
||||
rt_int32_t rt_strcmp(const char *cs, const char *ct);
|
||||
rt_size_t rt_strlen(const char *src);
|
||||
char *rt_strdup(const char *s);
|
||||
#ifdef __CC_ARM
|
||||
/* leak strdup interface */
|
||||
char* strdup(const char* str);
|
||||
#endif
|
||||
|
||||
char *rt_strstr(const char *str1, const char *str2);
|
||||
rt_int32_t rt_sscanf(const char *buf, const char *fmt, ...);
|
||||
|
@ -531,6 +531,9 @@ char *rt_strdup(const char *s)
|
||||
return tmp;
|
||||
}
|
||||
RTM_EXPORT(rt_strdup);
|
||||
#ifdef __CC_ARM
|
||||
char *strdup(const char *s) __attribute__((alias("rt_strdup")));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user