blob: 6d7d64718a009c3db648c7347e408e3a56d326d4 [file] [log] [blame]
Vadim Bendeburyd8813672015-05-27 17:13:38 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __MEMORYLIB_FP_H
8#define __MEMORYLIB_FP_H
9
Vadim Bendebury7b722a02015-05-29 22:40:54 -070010LIB_EXPORT BOOL Memory2BEqual(
11 const TPM2B *aIn, // IN: compare value
12 const TPM2B *bIn // IN: compare value
13);
Vadim Bendeburyd8813672015-05-27 17:13:38 -070014LIB_EXPORT void MemorySet(
15 void *destination, // OUT: memory destination
16 char value, // IN: fill value
17 UINT32 size // IN: number of octets to fill
18 );
19
20#endif