2 つの文字列からファイルのフル パスを取得する関数を作成したいのですが、コンパイル エラーが発生しました。
aviso: el tipo de dato por defecto es 'int' en el nombre de tipo [-Wimplicit-int]|
char *crearRuta(const *char ruta,const *char nombre){ (error in this line)
char* toReturn;
// Sacamos el nombre completo con la ruta del archivo
toReturn=(char *) malloc(strlen(ruta)+strlen(nombre)+2); // Sump 2, por el '\0'y '/'
//Verifico si el usuario ingreso la '/' final
if (ruta[tmp-1]=='/')
{
sprintf(toReturn;,"%s%s", ruta, nombre);
}
else
{
sprintf(toReturn,"%s/%s", ruta, nombre);
}
return toReturn;}
int main(){
char * c=crearRuta("una/direccion","archivo.txt");
return 0;}