Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/text.c
| Show All 19 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup bke | * \ingroup bke | ||||
| */ | */ | ||||
| #include <stdlib.h> /* abort */ | #include <stdlib.h> /* abort */ | ||||
| #include <string.h> /* strstr */ | #include <string.h> /* strstr */ | ||||
| #include <sys/types.h> | #include <sys/types.h> | ||||
| #include <sys/stat.h> | #include <sys/stat.h> | ||||
| #include <wchar.h> | |||||
| #include <wctype.h> | #include <wctype.h> | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| #include "BLI_path_util.h" | #include "BLI_path_util.h" | ||||
| #include "BLI_string.h" | #include "BLI_string.h" | ||||
| #include "BLI_string_cursor_utf8.h" | #include "BLI_string_cursor_utf8.h" | ||||
| ▲ Show 20 Lines • Show All 2,361 Lines • Show Last 20 Lines | |||||