xref: /aosp_15_r20/external/skia/tools/ios_utils.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 /*
2  * Copyright 2017 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef ios_util_DEFINED
9 #define ios_util_DEFINED
10 
11 #if defined(__cplusplus)
12 extern "C" {
13 #endif
14 
15     // cd into the current app's Documents/ directory.
16     // (This is the only directory we can easily read and write.)
17     void cd_Documents(void);
18 
19 #if defined(__cplusplus)
20 }
21 #endif
22 
23 #endif//ios_util_DEFINED
24