19 lines
997 B
C
19 lines
997 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* qstate_quote.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/03 12:10:09 by jhalford #+# #+# */
|
|
/* Updated: 2016/12/03 12:26:06 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "line_editing.h"
|
|
|
|
void qstate_quote(t_qstate *new, char c)
|
|
{
|
|
if (c == '\'')
|
|
*new = Q_NONE;
|
|
}
|