* Find the next entry after the one which (cp) falls within, return a * pointer to its start or NULL if there are no more. */
| 1002 | * pointer to its start or NULL if there are no more. |
| 1003 | */ |
| 1004 | static char * |
| 1005 | kernenv_next(char *cp) |
| 1006 | { |
| 1007 | |
| 1008 | if (cp != NULL) { |
| 1009 | while (*cp != 0) |
| 1010 | cp++; |
| 1011 | cp++; |
| 1012 | if (*cp == 0) |
| 1013 | cp = NULL; |
| 1014 | } |
| 1015 | return (cp); |
| 1016 | } |
| 1017 | |
| 1018 | void |
| 1019 | tunable_int_init(void *data) |
no outgoing calls
no test coverage detected