// Workshop 1:
// Version: 1.0
// Date: 2021/05/21
// Author: Fardad Soleimanloo
// Description:
// This file tests the DIY section of your workshop
///////////////////////////////////////////////////
#include
#include “cstring.h”
using namespace sdds;
using namespace std;
int main() {
char str1[80] = “abcdefghijklmnopqrstuvwxyz”;
char str2[80];
const char* fadd;
strCpy(str2, str1);
cout << str2 << endl;
strnCpy(str2, "@@@", 2);
cout << str2 << endl;
strnCpy(str2, "@@@", 3);
cout << str2 << endl;
strnCpy(str2, "@@@", 4);
cout << str2 << endl;
cout << strCmp("aab", "aaa") << endl;
cout << strnCmp("aab", "aaa", 2) << endl;
cout << strnCmp("aab", "aaa", 3) << endl;
cout << strLen("") << endl;
cout << strLen(str1) << endl;
fadd = strStr(str1, "jkl");
cout << fadd << endl;
fadd = strStr(str1, "bbb");
if (!fadd) cout << "Not found" << endl;
strCpy(str2, "John ");
strCat(str2, "Doe");
cout << str2 << endl;
return 0;
}