patch 8.2.3938: line comment start is also found in a string

Problem:    Line comment start is also found in a string.
Solution:   Skip line comments in a string.
diff --git a/src/proto/cindent.pro b/src/proto/cindent.pro
index 7de2ab3..80a6add 100644
--- a/src/proto/cindent.pro
+++ b/src/proto/cindent.pro
@@ -1,5 +1,6 @@
 /* cindent.c */
 int cin_is_cinword(char_u *line);
+int is_pos_in_string(char_u *line, colnr_T col);
 pos_T *find_start_comment(int ind_maxcomment);
 int cindent_on(void);
 void parse_cino(buf_T *buf);