Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: string.h
- Revision:
- 0:4ab1392a0142
diff -r 000000000000 -r 4ab1392a0142 string.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/string.h Sun Oct 07 11:49:09 2012 +0000 @@ -0,0 +1,22 @@ +#ifndef STRING_H +#define STRING_H + +#include "tp.h" +#include "list.h" + +tp_obj tp_string_t(TP, int n); +tp_obj tp_printf(TP, char const *fmt,...); +int _tp_str_index(tp_obj s, tp_obj k); +tp_obj tp_join(TP); +tp_obj tp_string_slice(TP,tp_obj s, int a, int b); +tp_obj tp_split(TP); +tp_obj tp_find(TP); +tp_obj tp_str_index(TP); +tp_obj tp_str2(TP); +tp_obj tp_chr(TP); +tp_obj tp_ord(TP); +tp_obj tp_strip(TP); +tp_obj tp_replace(TP); + + +#endif