/ CoreText / CTParagraphStyle.m
CTParagraphStyle.m
 1  #import <CoreText/CTParagraphStyle.h>
 2  
 3  #include <stdio.h>
 4  
 5  CTParagraphStyleRef CTParagraphStyleCreate(const CTParagraphStyleSetting *settings, size_t settingCount) {
 6      printf("STUB %s\n", __PRETTY_FUNCTION__);
 7      return nil;
 8  }
 9  
10  bool CTParagraphStyleGetValueForSpecifier(CTParagraphStyleRef paragraphStyle, CTParagraphStyleSpecifier spec, size_t valueBufferSize, void *valueBuffer) {
11      printf("STUB %s\n", __PRETTY_FUNCTION__);
12      return nil;
13  }