mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
1cdcf938b9
This makes far-away endifs clearer, so we're applying the rule to all endifs to be consistent.
13 lines
363 B
C
13 lines
363 B
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2016-2021 The TokTok team.
|
|
* Copyright © 2013 Tox project.
|
|
*/
|
|
|
|
#ifndef C_TOXCORE_TOXENCRYPTSAVE_DEFINES_H
|
|
#define C_TOXCORE_TOXENCRYPTSAVE_DEFINES_H
|
|
|
|
#define TOX_ENC_SAVE_MAGIC_NUMBER ((const uint8_t *)"toxEsave")
|
|
#define TOX_ENC_SAVE_MAGIC_LENGTH 8
|
|
|
|
#endif /* C_TOXCORE_TOXENCRYPTSAVE_DEFINES_H */
|