What I need to do: footnotes written (typset) in the same paragraph/line within tabular environment. What I am doing:
\begin{table}[!htb]
\caption{Caption text.}
\label{tab:text}
\begin{ruledtabular}
\begin{tabular}{p}
& \multicolumn{1}{c}{Reference} \\ \cline{2-1}
\textrm{Text} & \colrule
Text & Text & A\footnote{one} B\footnote{Two} & C\footnote{Three} \\
\end{tabular}
\end{ruledtabular}
\end{table}
This yields footnotes on three lines at the bottom of the table
a One
b Two
c Three
What I am trying to achieve:
a One; b Two; c Three
After some search, I stumbled upon footmisc package with its para option.
\usepackage[para]{footmisc}
This declaration does nothing but causes result above to be centered instead (of ragged to the right).
Any suggestions will be much appreciated.
ETA: here is a concrete MWE 
\documentclass[%
reprint,
]{revtex4-1}
\usepackage{graphicx}
\usepackage{dcolumn}
\usepackage{color}
\usepackage{float}
%\usepackage[para]{footmisc}
%\usepackage{dblfnote}
\begin{document}
\renewcommand{\arraystretch}{1.05}
\begin {table}[!h]
\caption{\label{tab1}
Table.}
\begin{ruledtabular}
\begin{tabular}{ccc}
\textrm{Label}&
\textrm{Value} &\\
\colrule
1 & One\footnote{testl} \\
2 & Two\footnote{test2} \\
3 & Three\footnote{test3} \\
\end{tabular}
\end{ruledtabular}
\end{table}
\end{document}
which compiles to

