C Workshop
SearchEnvironment.h
Go to the documentation of this file.
1 #pragma once
2 #include <stdbool.h>
3 
5 
15 void SearchEnvironment(char *envp[], char *search);
16 
24 bool StartsWith(char *string, char *search);
void SearchEnvironment(char *envp[], char *search)
Prints the environment variables starting with the given search term using the format:
Definition: SearchEnvironment.c:5
bool StartsWith(char *string, char *search)
Checks if a string starts with the text of search.
Definition: SearchEnvironment.c:21