Source file: /~heha/basteln/Haus/Telefon/sprech.zip/src/phonem.h

#pragma once

#pragma pack(push,1)
struct phonem_t{
 union{
  struct{
   byte index;
   byte length:4;
   byte stress:4;
  };
  wchar_t w;
 };
};
#pragma pack(pop)

Detected encoding: ASCII (7 bit)2