13 lines
145 B
C++
13 lines
145 B
C++
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace artery_font {
|
|
|
|
uint32 crc32Init();
|
|
uint32 crc32Update(uint32 crc, byte x);
|
|
|
|
}
|
|
|
|
#include "crc32.hpp"
|