Commit fb2a5081 by Ovidiu Predescu

Added to test Objective-C strings.

From-SVN: r35333
parent d4eb109c
#include <stdio.h>
#include <objc/NXConstStr.h>
int main(int argc, void **args)
{
printf ([@"this is a string\n" cString]);
return 0;
}
#include <stdio.h>
#include <objc/NXConstStr.h>
int main(int argc, void **args)
{
printf ([@"this " @"is " @"a " @"string\n" cString]);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment