Yulou Yang / Mbed 2 deprecated c_and_asm_mult

Dependencies:   mbed

Fork of c_and_asm by Chris Styles

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mult_c.c Source File

mult_c.c

00001 #ifdef __cplusplus
00002 extern "C" {
00003 #endif
00004 
00005     int mult_c(int c, int d) {
00006        return c*d;
00007     }
00008 
00009 #ifdef __cplusplus
00010 }
00011 #endif