===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ncmpc-0.42/build/build.sh-2-set -e
ncmpc-0.42/build/build.sh:3:cd `dirname $0`/..
ncmpc-0.42/build/build.sh-4-for i in output/*/build.ninja; do
ncmpc-0.42/build/build.sh:5:    ninja -C `dirname "$i"` "$@"
ncmpc-0.42/build/build.sh-6-done
##############################################
ncmpc-0.42/doc/index.rst-81-When ncmpc starts it tries to read the user's configuration file,
ncmpc-0.42/doc/index.rst:82::file:`$XDG_CONFIG_HOME/ncmpc/config` (usually
ncmpc-0.42/doc/index.rst-83-:file:`~/.config/ncmpc/config`).  If no user configuration file is
ncmpc-0.42/doc/index.rst-84-found then ncmpc tries to load the global settings from
ncmpc-0.42/doc/index.rst:85::file:`$SYSCONFDIR/ncmpc/config` (the actual path is displayed in the
ncmpc-0.42/doc/index.rst-86-output of the :option:`--version` option).  An example configuration
##############################################
ncmpc-0.42/doc/index.rst-332-When ncmpc starts it tries to read user-defined key bindings from the
ncmpc-0.42/doc/index.rst:333::file:`$XDG_CONFIG_HOME/ncmpc/keys` (usually
ncmpc-0.42/doc/index.rst-334-:file:`~/.config/ncmpc/keys`) file.  If no user-defined key bindings
ncmpc-0.42/doc/index.rst-335-are found then ncmpc tries to load the global key bindings from
ncmpc-0.42/doc/index.rst:336::file:`$SYSCONFDIR/ncmpc/keys` (the actual path is displayed on the
ncmpc-0.42/doc/index.rst-337-help screen).
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-51-#ifdef _WIN32
ncmpc-0.42/src/net/IPv4Address.hxx:52:	static constexpr struct in_addr ConstructInAddr(uint8_t a, uint8_t b,
ncmpc-0.42/src/net/IPv4Address.hxx-53-							uint8_t c, uint8_t d) noexcept {
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-71-
ncmpc-0.42/src/net/IPv4Address.hxx:72:	static constexpr struct in_addr ConstructInAddr(uint8_t a, uint8_t b,
ncmpc-0.42/src/net/IPv4Address.hxx-73-							uint8_t c, uint8_t d) noexcept {
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-89-	 */
ncmpc-0.42/src/net/IPv4Address.hxx:90:	static constexpr struct in_addr ConstructInAddr(uint32_t x) noexcept {
ncmpc-0.42/src/net/IPv4Address.hxx-91-		return ConstructInAddrBE(ToBE32(x));
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-111-						      uint16_t port) noexcept {
ncmpc-0.42/src/net/IPv4Address.hxx:112:		return Construct(ConstructInAddr(address), port);
ncmpc-0.42/src/net/IPv4Address.hxx-113-	}
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-131-			      uint8_t d, uint16_t port) noexcept
ncmpc-0.42/src/net/IPv4Address.hxx:132:		:IPv4Address(ConstructInAddr(a, b, c, d), port) {}
ncmpc-0.42/src/net/IPv4Address.hxx-133-
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-137-	constexpr explicit IPv4Address(uint16_t port) noexcept
ncmpc-0.42/src/net/IPv4Address.hxx:138:		:IPv4Address(ConstructInAddr(INADDR_ANY), port) {}
ncmpc-0.42/src/net/IPv4Address.hxx-139-
##############################################
ncmpc-0.42/src/net/IPv4Address.hxx-146-	static constexpr struct in_addr Loopback() noexcept {
ncmpc-0.42/src/net/IPv4Address.hxx:147:		return ConstructInAddr(INADDR_LOOPBACK);
ncmpc-0.42/src/net/IPv4Address.hxx-148-	}