Blame view

ios-examples-13.4.9/Ex_Indicator/EmmocoMobileFramework/Headers/EMChecksum.h 265 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  EMChecksum.h
//  Emmoco
//
//  Created by bob frankel on 8/18/11.
//  Copyright 2011 Emmoco, Inc.. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface EMChecksum : NSObject {

}

- (void)addByte:(int)byte;
- (void)clear;
- (int)sum;

@end