File: c.cc

package info (click to toggle)
pybindgen 0.20.0%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,932 kB
  • sloc: python: 15,981; cpp: 1,889; ansic: 617; makefile: 86; sh: 4
file content (25 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (7)
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
#include "c.h"

static const int LEN = 1024*1024;

static unsigned short int buffer[LEN] = {0,};

unsigned short int* GetBuffer()
{
    return buffer;
}

int GetBufferLen()
{
    return LEN;
}

unsigned short int GetBufferChecksum()
{
    unsigned short int sum = 0;
    for (int i = 0; i < LEN; sum += buffer[i++]);
    return sum;
}