1 /* 2 * 3 * Copyright %G% Sun Microsystems, Inc. All Rights Reserved 4 * 5 * 6 * Comments: 7 * 8 */ 9 10 #pragma ident "%Z%%M% %I% %E% SMI" 11 12 #include <stdlib.h> 13 #include <stdio.h> 14 #include <ctype.h> 15 #include <string.h> 16 17 void free_strarray( char **sap ) 18 { 19 int i; 20 21 if ( sap != NULL ) { 22 for ( i = 0; sap[ i ] != NULL; ++i ) { 23 free( sap[ i ] ); 24 } 25 free( (char *)sap ); 26 } 27 } 28