I have this simple lcd xc8 header file:
#ifndef XC_PANTALLACWS_H
#define XC_PANTALLACWS_H
#include "lcd.h"
void pantallaCWS (const char stringProyecto){
const char stringProyecto[16] = "__proyNombre____";
Lcd_Init();
Lcd_Out(1, 0, stringProyecto);
}
#endif
What I would like to do is that, if an argument is not given in the function, put one by default.
is this possible?