-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblCheckForEquality.hpp
More file actions
52 lines (40 loc) · 1.52 KB
/
blCheckForEquality.hpp
File metadata and controls
52 lines (40 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef BL_CHECKFOREQUALITY_HPP
#define BL_CHECKFOREQUALITY_HPP
//-------------------------------------------------------------------
// FILE: blCheckForEquality.hpp
//
//
//
// PURPOSE: Generic functions check whether two buffers
// are equal or whether they are partially equal
// to each other.
//
// -- For the partially equal check, the functions
// check if the "bufferToCheck" is entirily
// contained within the "bufferToCheckAgainst"
//
// -- All functions/algorithms are defined within
// the "blAlgorithmsLIB" namespace
//
//
//
// AUTHOR: Vincenzo Barbato
// http://www.barbatolabs.com
// navyenzo@gmail.com
//
//
//
// LISENSE: MIT-LICENCE
// http://www.opensource.org/licenses/mit-license.php
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// NOTE: This class is defined within the blAlgorithmsLIB namespace
//-------------------------------------------------------------------
namespace blAlgorithmsLIB
{
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// End of namespace
}
//-------------------------------------------------------------------
#endif // BL_CHECKFOREQUALITY_HPP