xref: /onnv-gate/usr/src/lib/libldap4/common/utils.c (revision 3857:21b9b714e4ab)
1 /*
2  *
3  * Copyright 1998 Sun Microsystems, Inc.  All rights reserved.
4  * Use is subject to license terms.
5  *
6  *
7  * Comments:
8  *
9  */
10 
11 #pragma ident	"%Z%%M%	%I%	%E% SMI"
12 
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <ctype.h>
16 #include <string.h>
17 
free_strarray(char ** sap)18 void free_strarray( char **sap )
19 {
20     int		i;
21 
22     if ( sap != NULL ) {
23 		for ( i = 0; sap[ i ] != NULL; ++i ) {
24 			free( sap[ i ] );
25 		}
26 		free( (char *)sap );
27     }
28 }
29