just a sample of what can be done

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers calc.h Source File

calc.h

00001 #define     NUMBER  '0'
00002 
00003 int     getch( void );
00004 void    ungetch( int );
00005 
00006 int     getop( char [] );
00007 
00008 void    push( double );
00009 double  pop( void );
00010 void    show_stack( void );