Is there a C API for finding a file path in an application bundle?
I know this can be done in Objective-C with the following syntax.
NSString *path = [[NSBundle mainBundle] pathForResource:@"MyImage" ofType:@"bmp"];
Is there a corresponding function that I can call from C or C ++ code?
source share