int crearRed(){
   
//Variables ...
 
    
//Etiqueta
menu_crear:
{
    //operaciones...
 
    while(...)
    {   
       //operaciones
        if (...)
        {
            //...
        }
        if (...)
        {
            //...
        }
        else
        {
            //...
        }
        
    }
    
    
   //...
 
    while(...)
    {
        //...
 
        if (...) goto menu_crear;
    }
 
 
    //...
 
    
    if (...)
    {
        //...
        for (...)
        {
            //...
            while(...)
            {
                //...
            }
        }
    }
 
    //...
    while(strcmp(nombre, "")==0)
    {
        //...
    }
 
   //...
 
    if (...)
    {
        //...
    }
    return tratarRed(red, nombre);  
    
}
}