encode_80211   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/examples/contrib/80211.xtm

Implementation

(bind-func encode_80211
  (let ((pop 1) (push 1))
    (lambda (input output)
      (let ((last_out:i64 0))
        (lambda ()
          (set! last_out (% (+ last_out
                               (qbuf_pop input))
                            2))
          (qbuf_push output last_out)
          void)))))


Back to Index

Similar Entries