TinyJS on mbed. TinyJS is very simple JavaScript engine.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TinyJS_MathFunctions.h Source File

TinyJS_MathFunctions.h

00001 #ifndef TINYJS_MATHFUNCTIONS_H
00002 #define TINYJS_MATHFUNCTIONS_H
00003 
00004 #include "TinyJS.h"
00005 
00006 /// Register useful math. functions with the TinyJS interpreter
00007 extern void registerMathFunctions(CTinyJS *tinyJS);
00008 
00009 #endif
00010