12 lines
326 B
C
12 lines
326 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
void memorymonitor_track_allocation(size_t block_count);
|
|
void memorymonitor_reset(void);
|