mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 11:26:51 +01:00
42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* prompt.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/19 13:48:05 by adjoly #+# #+# */
|
|
/* Updated: 2024/05/27 18:59:56 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PROMPT_H
|
|
# define PROMPT_H
|
|
|
|
# include "env.h"
|
|
|
|
/**
|
|
* @brief return the short hostname from /etc/hostname
|
|
* or return nixos if file doesn't exist or is empty
|
|
*
|
|
* @return (char *) The short hostname
|
|
*/
|
|
char *get_hostname(void);
|
|
|
|
/**
|
|
* @brief return the pwd (from the env), and if in home put a ~
|
|
* replacing the home directory
|
|
*
|
|
* @return (char *) the pwd
|
|
*/
|
|
char *get_pwd(t_env env);
|
|
|
|
/**
|
|
* @brief return the full prompt
|
|
*
|
|
* @prompt (char *) the prompt
|
|
*/
|
|
char *get_prompt(t_env env);
|
|
|
|
#endif
|