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: builtins.h
- Revision:
- 0:4ab1392a0142
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/builtins.h Sun Oct 07 11:49:09 2012 +0000 @@ -0,0 +1,32 @@ +#ifndef BUILTINS_H +#define BUILTINS_H + +#include "tp.h" +#include "list.h" +#include "misc.h" +#include "dict.h" +#include "string.h" + +tp_obj tp_print(TP); +tp_obj tp_bind(TP); +tp_obj tp_min(TP); +tp_obj tp_max(TP); +tp_obj tp_copy(TP); +tp_obj tp_len_(TP); +tp_obj tp_assert(TP); +tp_obj tp_range(TP); +tp_obj tp_system(TP); +tp_obj tp_istype(TP); +tp_obj tp_float(TP); +tp_obj tp_save(TP); +tp_obj tp_load(TP); +tp_obj tp_fpack(TP); +tp_obj tp_abs(TP); +tp_obj tp_int(TP); +tp_num _roundf(tp_num v); +tp_obj tp_round(TP); +tp_obj tp_exists(TP); +tp_obj tp_mtime(TP); + + +#endif