This file is indexed.

/usr/lib/ats-anairiats-0.2.11/libc/SATS/string.sats is in ats-lang-anairiats 0.2.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
(***********************************************************************)
(*                                                                     *)
(*                         Applied Type System                         *)
(*                                                                     *)
(*                              Hongwei Xi                             *)
(*                                                                     *)
(***********************************************************************)

(*
** ATS - Unleashing the Potential of Types!
** Copyright (C) 2002-2009 Hongwei Xi, Boston University
** All rights reserved
**
** ATS is free software;  you can  redistribute it and/or modify it under
** the terms of the GNU LESSER GENERAL PUBLIC LICENSE as published by the
** Free Software Foundation; either version 2.1, or (at your option)  any
** later version.
** 
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without  even  the  implied  warranty  of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE.  See the  GNU General Public License
** for more details.
** 
** You  should  have  received  a  copy of the GNU General Public License
** along  with  ATS;  see the  file COPYING.  If not, please write to the
** Free Software Foundation,  51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*)

(* ****** ****** *)
//
// Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu) *)
// Start Time: 2008
//
(* ****** ****** *)

%{#
#include "libc/CATS/string.cats"
%} // end of [%{#]

(* ****** ****** *)

staload ERRNO = "libc/SATS/errno.sats"
typedef errno_t = $ERRNO.errno_t

(* ****** ****** *)

fun strcmp (
  str1: string, str2: string
) : int = "mac#atslib_strcmp" // end of [strcmp]

fun substrcmp
  {n1:int} {i1:nat | i1 <= n1}
  {n2:int} {i2:nat | i2 <= n2} (
  str1: string n1, i1: size_t i1, str2: string n2, i2: size_t i2
) : int = "atslib_substrcmp"
// end of [substrcmp]

(* ****** ****** *)

fun strncmp (
  str1: string, str2: string, n: size_t
) :<> int = "mac#atslib_strncmp" // end of [strncmp]

fun substrncmp
  {n1:int}
  {i1:nat | i1 <= n1}
  {n2:int}
  {i2:nat | i2 <= n2}
  {n:nat} (
  str1: string n1, i1: size_t i1
, str2: string n2, i2: size_t i2
, n: size_t n
) :<> int
  = "mac#atslib_substrncmp"
// end of [fun]

(* ****** ****** *)

fun strlen {n:nat}
  (str: string n):<> size_t n = "mac#atslib_strlen" // !mac
// end of [strlen]

(* ****** ****** *)

(*
char *strchr(const char*, int);
*)
fun strchr
  (str: string, c: int):<> ptr = "mac#atslib_strchr"
// end of [strchr]

(*
char *strrchr(const char*, int);
*)
fun strrchr
  (str: string, c: int):<> ptr = "mac#atslib_strrchr"
// end of [strrchr]

(*
char *strstr(const char*, const char* ): 
*)
fun strstr
  (haystack: string, needle: string):<> ptr = "mac#atslib_strstr"
// end of [strstr]

(* ****** ****** *)

fun strspn {n:nat}
  (str: string n, accept: string):<> sizeLte n
  = "mac#atslib_strspn" // macro!
// end of [strspn]

fun strcspn {n:nat}
  (str: string n, reject: string):<> sizeLte n
  = "mac#atslib_strcspn" // macro!
// end of [strcspn]

(* ****** ****** *)

fun strcpy
  {m:int} {n:nat | n < m} {l:addr} {ofs:int} (
  pf_buf: !b0ytes m @ l >> strbuf (m, n) @ l | sbf: ptr l, str: string n
) :<> ptr l = "mac#atslib_strcpy" // macro!
// end of [strcpy]

(* ****** ****** *)

fun strcat
  {m:int} {n1,n2:nat | n1 + n2 < m} {l:addr} (
  pf_buf: !strbuf (m, n1) @ l >> strbuf (m, n1+n2) @ l
| sbf: ptr l, str: string n2
) :<> ptr l = "mac#atslib_strcat" // macro!
// end of [strcat]

(*
char *strncat(char *dst, const char *src, size_t n):
note that there is really no need for this function given that [strcat] is safe!
*)

(* ****** ****** *)

(*
char *strpbrk(const char *str, const char *accept);
*)

dataprop
strpbrk_p (l:addr, n:int, l_ret:addr) =
  | {i:nat | i < n} {l_ret == l+i} strpbrk_p_some (l, n, l_ret)
  | {l_ret == null} strpbrk_p_none (l, n, l_ret)
// end of [strpbrk_p]

fun strpbrk
  {m,n:nat} {l:addr} (
  pf: !strbuf (m, n) @ l
| p: ptr l, accept: string
) :<> [l_ret:addr] (strpbrk_p (l, n, l_ret) | ptr l_ret)
  = "mac#atslib_strpbrk" // macro!
// end of [strpbrk]

(* ****** ****** *)
//
// HX: implemented in [string.dats]
//
fun strdup_gc
  {n:nat} (str: string n)
  :<> [l:addr] (freebyte_gc_v (n+1, l), strbuf (n+1, n) @ l | ptr l)
  = "atslib_strdup_gc"
// end of [strdup_gc]

(* ****** ****** *)

dataprop
memchr_p (
  l:addr, n:int, addr(*ret*)
) = // [l] should be positive
  | {i:nat | i < n} memchr_p_some (l, n, l+i)
  | memchr_p_none (l, n, null)
// end of [memchr_p]

fun memchr {n:nat}
  {n1:int | n <= n1} {l:addr} (
  pf: !bytes n1 @ l | p: ptr l, chr: int, n: size_t n
) : [l_ret:addr] (memchr_p (l, n, l_ret) | ptr l_ret) = "mac#atslib_memchr"
// end of [memchr]

(* ****** ****** *)

fun memcmp {n:nat}
  {n1,n2:int | n <= n1; n <= n2} (
  buf1: &bytes n1, buf2: &bytes n2, n: size_t n
) :<> int = "mac#atslib_memcmp" // end of [memcmp]

(* ****** ****** *)

fun memcpy {n:nat}
  {n1,n2:int | n <= n1; n <= n2} {l:addr} (
  pf_dst: !bytes n1 @ l | p_dst: ptr l, p_src: &bytes n2, n: size_t n
) :<> ptr l = "mac#atslib_memcpy" // end of [memcpy]

(* ****** ****** *)

fun memset {n:nat}
  {n1:int | n <= n1} {l:addr} (
  pf: !bytes n1 @ l | p: ptr l, chr: int, n: size_t n
) :<> ptr l = "mac#atslib_memset" // end of [memset]

(* ****** ****** *)
//
// HX: [strerror] is not reentrant:
// memory for the returned string is statically allocated
//
fun strerror (
  errno: errno_t
) :<!ref> [l:agz] (strptr l -<lin,prf> void | strptr l)
  = "mac#atslib_strerror" // macro!
// end of [strerror]

(* ****** ****** *)

dataview
strerror_v (
  m:int, l:addr, int(*err*)
) =
  | {n:nat}
    strerror_succ (m, l,  0) of strbuf (m, n) @ l
  | strerror_fail (m, l, ~1) of b0ytes m @ l
// end of [strerror_v]

//
// HX: [strerror_r] is reentrant // this is the POSIX version
//
fun strerror_r
  {m:nat} {l:addr} (
  pf: b0ytes m @ l | errno: errno_t, p_buf: ptr l, m: size_t m
) : [i:int] @(strerror_v (m, l, i) | int i) = "mac#atslib_strerror_r"
// end of [strerror_r]
  
(* ****** ****** *)

(*
//
// HX-2010-10-21:
// this one is moved into libc/SATS/signal.sats:
//
fun strsignal (sgn: signum_t)
  : [l:addr] (strptr(l) -<lin,prf> void | strptr(l)) = "mac#atslib_strsignal"
// end of [strsignal]
*)

(* ****** ****** *)

(* end of [string.sats] *)