#!/bin/bash
fn_exists(){
    LC_ALL=C type $1 2>/dev/null | grep -q 'function' &>/dev/null
}
is_target(){
	return [ "$TARGET" == "$1" ]
}
is_host(){
	return [ "$HOST" == "$1" ]
}
