Licklider Transmission Protocol (CCSDS 734.1-B) for reliable DTN links
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mass replace Printf.sprintf/printf with Fmt.str/pr (merlint E200)

112 files across the monorepo. Printf.sprintf → Fmt.str,
Printf.printf → Fmt.pr for consistent formatting library usage.

+1 -1
+1 -1
test/interop/ion/test.ml
··· 12 12 let hex_of_string s = 13 13 let buf = Buffer.create (String.length s * 2) in 14 14 String.iter 15 - (fun c -> Buffer.add_string buf (Printf.sprintf "%02x" (Char.code c))) 15 + (fun c -> Buffer.add_string buf (Fmt.str "%02x" (Char.code c))) 16 16 s; 17 17 Buffer.contents buf 18 18