mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 01:04:54 +00:00
2129bfc570
Though now it strikes me that I've forgotten to retain the machine name.
18 lines
289 B
Objective-C
18 lines
289 B
Objective-C
//
|
|
// NSData+CRC32.m
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 22/07/2019.
|
|
// Copyright 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
@interface NSData (CRC32)
|
|
|
|
@property(nonnull, nonatomic, readonly) NSNumber *crc32;
|
|
|
|
@end
|