Mike Klein | adacaef | 2017-02-06 09:26:14 -0500 | [diff] [blame] | 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.) |
Brian Osman | e6984a0 | 2017-10-10 14:45:29 -0400 | [diff] [blame] | 17 | void cd_Documents(void); |
Mike Klein | adacaef | 2017-02-06 09:26:14 -0500 | [diff] [blame] | 18 | |
| 19 | #if defined(__cplusplus) |
| 20 | } |
| 21 | #endif |
| 22 | |
| 23 | #endif//ios_util_DEFINED |