-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStringManipulated.h
20 lines (20 loc) · 1.15 KB
/
StringManipulated.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*-------------------------------------------------------------------------
* Developed for Enersys Energy Solutions Private Limited, Hyderabad, Indiaresearch
* research on Auto Feeder.
* If you use the code cite the paper
* Appana, D. K., Alam, M. W., & Basnet, B. (2016) "A Novel Design of Feeder System
* for Aqua Culture Suitable for Shrimp Farming," International Journal of Hybrid
* Information Technology, 9(4), 199-212.
* http://www.sersc.org/journals/IJHIT/vol9_no4_2016/18.pdf
* (c) Copyright 2016 Enersys Energy Solutions, All rights reserved
*-------------------------------------------------------------------------*/
#ifndef _stringmanipulated_h
#define _stringmanipulated_h
void MemoryClear(unsigned char *ptr);
unsigned char ConvertSTRING_CHAR(unsigned char *ptr, unsigned char noofbytes);
unsigned char stringlength(unsigned char *ptr);
void StringCopy(unsigned char *Source, unsigned char *Destination);
unsigned char MemoryCMP(unsigned char *Source, unsigned char *Destination);
void ClearBuffer(unsigned char *ptr, int length);
unsigned int ConvertSTRING_Int(unsigned char *ptr, unsigned char noofbytes);
#endif