SELECT  proname
FROM    pg_catalog.pg_namespace n
JOIN    pg_catalog.pg_proc p
ON      pronamespace = n.oid
WHERE   nspname = 'public';

If you are using psql client you can simply type:
\df

And to view the stored procedure code:
\df+ procname