In function 'void loop()': error: 'spiralInAndOut' was not declared in this scop

int layer[5] = {A4, A3, A2, A1, A0}; //initializing and declaring led layers
int column[25] = {24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0,}; //initializing and declaring led rows
int time = 250;

void setup()
{

for (int i = 0; i < 25; i++)
{
pinMode(column*, OUTPUT); //setting rows to ouput*

  • }*
  • for (int i = 0; i < 5; i++)*
  • {*
    _ pinMode(layer*, OUTPUT); //setting layers to output*_
    * }*
    * randomSeed(analogRead(10)); //seeding random for random pattern*
    }
    void loop()
    {
    * turnEverythingOff();*
    * flickerOn();*
    * turnEverythingOn();*
    * delay(time);*
    * turnOnAndOffAllByLayerUpAndDownNotTimed();*
    * layerstompUpAndDown();*
    * > spiralInAndOut();>*
    * turnOnAndOffAllByColumnSideways();*
    * delay(time);*
    * aroundEdgeDown();*
    * turnEverythingOff();*
    * randomflicker();*
    * randomRain();*
    * diagonalRectangle();*
    >> > goThroughAllLedsOneAtATime();> > >
    * >> > propeller();>> > *
    * spiralInAndOut();*
    * flickerOff();*
    * turnEverythingOff();*
    * delay(2000);*
    }

Where is the rest of the program ?

 for (int i = 0; i < 5; i++)
 {
   pinMode(layer, OUTPUT);  //setting layers to output
 }

What is your for loop doing for you here?

pinMode(layer[i],OUTPUT) maybe?

Please use code tags (</> button on the toolbar) when you post code or warning/error messages. The reason is that the forum software can interpret parts of your code as markup (for example, the italics in your code above), leading to confusion (for example, @evanmars' reply), wasted time, and a reduced chance for you to get help with your problem. This will also make it easier to read your code and to copy it to the IDE or editor. If your browser doesn't show the posting toolbar then you can just manually add the code tags:
[code]``[color=blue]// your code is here[/color]``[/code]
Using code tags and other important information is explained in the How to use this forum post. Please read it.