Files
revng-revng/include/revng/Runtime/PrintPlainMetaAddress.h
Alessandro Di Federico 7ddae47040 Minor changes
2024-07-10 15:34:19 +02:00

21 lines
529 B
C

#pragma once
/*
* This file is distributed under the MIT License. See LICENSE.md for details.
*/
#include <inttypes.h>
#include <stdio.h>
#include "revng/Runtime/PlainMetaAddress.h"
static int fprint_metaaddress(FILE *stream, PlainMetaAddress *address) {
return fprintf(stream,
"{ 0x%" PRIx32 ", 0x%" PRIx16 ", 0x%" PRIx16 ", 0x%" PRIx64
" }",
address->Epoch,
address->AddressSpace,
address->Type,
address->Address);
}