I am new to the C programming language. Recently, I have been trying to create my own header file in VS Code. Everything is underlined in red, and the error message reads-'Unknown Mnemonics'.
All my files are in the same directory. Interestingly, VS Code picks the included tag for the header file, while the header file continues to display Unknown Mnemonics. All function declarations are underlined in red too. See Below.
#ifndef HEADER_FILE_H
#define HEADER_FILE_H
int _putchar(char c);
void print_alphabet(void);
void print_alphabet_x10(void);
int _islower(int c);
int _isalpha(int c);
int print_sign(int c);
int _abs(int);
int print_last_digit(int);
void jack_bauer(void);
void times_table(void);
int add(int, int);
void print_to_98(int n);
void print_times_table(int n);
#endif
The name of my header file is: header_file.h
Please, how do I resolve this error?