lcd scrolling text and infinite loop setup

In plain old c which only uses int main(void)

The setup and loop equals

int main(void)
{
<---------- the setup function

while(1 = 1)
{

<---------- The endless loop function

}
}