blob: 579da075a4c9209d78b5d11d25536db6abdd7f87 [file] [log] [blame]
Mike Kleinadacaef2017-02-06 09:26:14 -05001/*
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)
12extern "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 Osmane6984a02017-10-10 14:45:29 -040017 void cd_Documents(void);
Mike Kleinadacaef2017-02-06 09:26:14 -050018
19#if defined(__cplusplus)
20}
21#endif
22
23#endif//ios_util_DEFINED