#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include "LR6.h"
#include <string>
using namespace std;
int main()
{
char* s1 = NULL;
cin >> s1;
str_len(s1);
return 0;
}
и заголовочный файл LR6.h
#include <iostream>
using namespace std;
int str_len(char* s) {
int length = sizeof(s);
return length;
}