Kuvée / COBS

Dependents:   Nucleo_cobs_test

COBS.h

Committer:
glansberry
Date:
2015-07-21
Revision:
2:64fdac5efaa1
Parent:
0:736db4334c89

File content as of revision 2:64fdac5efaa1:

#ifndef _COBS_H
#define _COBS_H

class COBS{
    
    public:
    void StuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
    int UnStuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
    
    };
#endif