/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
void print_env(char *name, char *color)
{
char * var = (char *) getenv (name);
printf ("%s=%s\n", name, var);
for (int i = 0; var[i] != 0; i++)
{
printf ("%s%c", color, var[i]);
}
}
int main()
{
print_env("PS1", "\x1B[35m");
return 0;
}