mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
3bf095fb49
- Standardize copyright and license notice - Standardize header guards
12 lines
388 B
C
12 lines
388 B
C
// Copyright 2022 Dietrich Epp.
|
|
// This file is part of SyncFiles. SyncFiles is licensed under the terms of the
|
|
// Mozilla Public License, version 2.0. See LICENSE.txt for details.
|
|
#ifndef MACOS_TEMPFILE_H
|
|
#define MACOS_TEMPFILE_H
|
|
|
|
// Create a FSSpec for a temporary file on the given volume. Does not actually
|
|
// create the file.
|
|
OSErr MakeTempFile(short vRefNum, FSSpec *spec);
|
|
|
|
#endif
|