Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use some C source code in iPhone project?

I found a speech synthesizer that supports many languages (http://espeak.sourceforge.net/index.html). But the source code that is available is written in C.

What can i do to make it work on iPhone?

like image 680
DixieFlatline Avatar asked Oct 03 '11 12:10

DixieFlatline


1 Answers

Objective-C is a strict super set of C. Which means you can use any C code in your Obj-C project.

like image 156
rgngl Avatar answered Sep 30 '22 20:09

rgngl