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.
builtins.h
- Committer:
- gignops
- Date:
- 2012-10-07
- Revision:
- 0:4ab1392a0142
File content as of revision 0:4ab1392a0142:
#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