opnsense-src/test/Lexer/digraph.c

16 lines
279 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -fsyntax-only -verify < %s
2009-06-02 13:58:47 -04:00
2009-11-18 09:59:57 -05:00
%:include <stdint.h>
2009-06-02 13:58:47 -04:00
%:ifndef BUFSIZE
%:define BUFSIZE 512
%:endif
void copy(char d<::>, const char s<::>, int len)
<%
while (len-- >= 0)
<%
d<:len:> = s<:len:>;
%>
%>