我想创建一个函数来从 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;}