Changeset 262 for trunk/poppler/freetype2/src/autofit/afhints.c
- Timestamp:
- Jan 17, 2009, 10:45:05 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/poppler/freetype2/src/autofit/afhints.c
r209 r262 5 5 /* Auto-fitter hinting routines (body). */ 6 6 /* */ 7 /* Copyright 2003, 2004, 2005, 2006, 2007 by*/7 /* Copyright 2003, 2004, 2005, 2006, 2007, 2009 by */ 8 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 9 /* */ … … 128 128 #ifdef AF_DEBUG 129 129 130 #include <stdio.h>130 #include FT_CONFIG_STANDARD_LIBRARY_H 131 131 132 132 static const char* … … 204 204 if ( flags & AF_EDGE_ROUND ) 205 205 { 206 memcpy( temp + pos, "round", 5 );206 ft_memcpy( temp + pos, "round", 5 ); 207 207 pos += 5; 208 208 } … … 211 211 if ( pos > 0 ) 212 212 temp[pos++] = ' '; 213 memcpy( temp + pos, "serif", 5 );213 ft_memcpy( temp + pos, "serif", 5 ); 214 214 pos += 5; 215 215 }
Note: See TracChangeset
for help on using the changeset viewer.