LISTING 1 C Code Fragment Illustrating How to Allocate Ten Memory Blocks to be Used for IntuiText Structures UBYTE *pointer; ULONG i; struct Remember *IntuiTextBlocks = NULL; ... ... for( i = 0 ; i < 10 ; ++i) { pointer = AllocRemember(&IntuiTextBlocks, sizeof(struct IntuiText), MEMF_CLEAR); /* Exit if allocation fails */ if (pointer = NULL) ExitRoutine(); } ... ...