ios_utils.h 453 B

1234567891011121314151617181920212223
  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. #ifndef ios_util_DEFINED
  8. #define ios_util_DEFINED
  9. #if defined(__cplusplus)
  10. extern "C" {
  11. #endif
  12. // cd into the current app's Documents/ directory.
  13. // (This is the only directory we can easily read and write.)
  14. void cd_Documents(void);
  15. #if defined(__cplusplus)
  16. }
  17. #endif
  18. #endif//ios_util_DEFINED