util.h 333 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2024 Meta Platforms, Inc. and affiliates.
  4. * Copyright (c) 2024 David Vernet <void@manifault.com>
  5. */
  6. #ifndef __SCX_TEST_UTIL_H__
  7. #define __SCX_TEST_UTIL_H__
  8. long file_read_long(const char *path);
  9. int file_write_long(const char *path, long val);
  10. #endif // __SCX_TEST_H__